Remove skill via script?

ShadowLight

New member
Messages
46
Points
0
Hi guys,

I'm doing a quest where players would be able to learn steal on a particular map. But I'm having problem removing them, not sure what the command is.

I've added the skill to the players (if they don't already have 'Steal') using:

skill 1001,1,0;

The question is, how do I remove them?

EDIT: Actually the code above to give players skill doesn't seem to work (no errors).

 
Last edited by a moderator:
assign the temporary flag "1" to the skill.

skill 1001,1,1;
or you could also try this to remove it.

Code:
skill 1001,0,0;
 
Last edited by a moderator:
Back
Top