Author Topic: /stunme help  (Read 1002 times)

i'm trying to make a scirpt that makes it so that when a player says /stunme it stuns him,
i've coded it but it wont work, heres the code:
Code: [Select]
package stunme{
function serverCmdStunme(%Client,%Arg)
{
  %col.setvelocity("10 10 10");
  tumble(%thisplayer, 15000);
}
};
activatepackage(stunme);

  "tumble" is not a command, i cant rly help you here beyond that, sorry

  "tumble" is not a command, i cant rly help you here beyond that, sorry

It is.

You're missing a dot in of tumble %this.player and it should be %client.player and you don't need the number after %thisplayer and %col isn't defined anywhere.
« Last Edit: October 09, 2007, 03:28:59 AM by MrPickle »

  "tumble" is not a command, i cant rly help you here beyond that, sorry

It is.

You're missing a dot in of tumble %this.player and it should be %client.player and you don't need the number after %thisplayer and %col isn't defined anywhere.
hmm i swore it was not... dam

ah, now it works, thank you  MrPickle.