Command to change sprite

rayz

New member
Messages
2
Points
0
Hi guys I wanna ask if there is a command that changes sprites.

I found out that changebase does that, but it changes the name of the class and gives the skills of the job you choose. I know that you can't actually use these skills but its kinda... xD

Its not on source support but I wanna ask about the file that these commands like changebase are defined. Maybe I can use that as a base to do another command that really gives only the sprites.

Thanks 😊

 
Hi.

Example for changing a character's sprite to Acolyte:

disguise(Job_Acolyte);

// or

disguise(4);




From doc/script_commands.txt:

*disguise(<Monster ID>)
*undisguise()

This command disguises the current player with a monster sprite.
The disguise lasts until undisguise() is issued or the player logs out.

Example:

disguise(PORING); // Disguise character as a Poring.
next();
undisguise(); // Return to normal character sprite.
The description is misleading since it supports not only monster IDs, but also NPC sprite IDs or job IDs....

~Kenpachi

 
Last edited by a moderator:
Back
Top