Author Topic: I need to remove the player tools  (Read 294 times)

Code: [Select]
findClientByName().player.tool0-4 = 0;Whats wrong with that?
Its for a jail script.

Do this:

Code: [Select]
findClientByName(Kilser).player.clearTools();

For future reference, what you said would never work.

You'd do something like this:

Code: [Select]
for(%i = 0; %i < 5; %i++)
   findClientByName(%name).player.tool[%i] = 0;