Thread: Triggers
View Single Post
  #1  
Old 02-13-2006, 12:54 AM
talkingnoodle talkingnoodle is offline
Rapidwolve
talkingnoodle's Avatar
Join Date: Nov 2005
Location: Leominster, MA
Posts: 229
talkingnoodle is on a distinguished road
Send a message via AIM to talkingnoodle Send a message via MSN to talkingnoodle
Post Triggers

I'm triggering the server to get info on another player and this is what is in the server options.

PHP Code:
function onActionServerside(){
if (
params[0] == "getinfo"){
for (
aallplayers){
with (a){
if (
== params[1]){
setstring("this.kills"clientr.b031504k);
setstring("this.deaths"clientr.b031504d);
setstring("this.money"clientr.money572R7S);
setstring("this.hp"client.hp);
setstring("this.maxhp"clientr.mhp);
setstring("this.guild"clientr.tagon);
setstring("this.ec"client.etcoins);
}
}
}
}
triggerAction(0,0"clientside""Tools/Police Tool""gotinfo"this.killsthis.deathsthis.moneythis.hpthis.maxhpthis.guildthis.ec);

And here is how the clientside part reads it

PHP Code:
function onActionClientside(){
if (
params[0] == "gotinfo"){
info1 params[1];
info2 params[2];
info3 params[3];
info4 params[4];
info5 params[5];
info6 params[6];
info7 params[7];
}


When i read the info(1-6) parts it shows MY stats and not the other players :/ help plz
__________________


AIM: Rapidwolve Graal
MSN: [email protected]


2/12/06 - Crossroads NPC Admin
Reply With Quote