Quote:
Originally Posted by Gunderak
in the time i posted it i have figured out how to change the stats but i think maybe by setting a serverside flag youd be able to display it? like
PHP Code:
if(checkbox_1.checked == true){
server.checkbox1=1
then
PHP Code:
function onActionServerSide( cmd ){
if ( cmd == "SendFeedback" ) {
echo("TESTING"@server.checkbox1);
}
}
maybe thatd work il have to experiment.
|
this wouldn't be a good idea since you'd have to be constantly chjecking to see if a server var changed, and it wouldn't be unique to the players. You should be using a triggerserver to send the data and store it on the server.