Thread: Converting NPCs
View Single Post
  #12  
Old 06-06-2001, 08:13 AM
T-Squad T-Squad is offline
Banned
T-Squad's Avatar
Join Date: Mar 2001
Location: United States of America
Posts: 1,733
T-Squad is on a distinguished road
stefan, lets say you have the script (this is a simplified version to show a point)

timeout = 0.1;
if (timeout) {
timeout = 0.1;
setstring server.blah,#v(this.x);
}
//#CLIENSIDE
timeout = 0.05;
if (timeout) {
timeout = 0.05;
if (keydown(6)) {
this.x = 5;
}
}

in a nutshell, i need server.blah to = this.x....
but for some reason it doesnt work..also keydown doesnt work server side, so i must make it client side....