-
Notifications
You must be signed in to change notification settings - Fork 757
Setnpcdisplay
Haru edited this page Oct 19, 2016
·
1 revision
- setnpcdisplay("<npc></npc>", "<display></display>", <class></class>, <size></size>)
- setnpcdisplay("<npc></npc>", "<display></display>", <class></class>)
- setnpcdisplay("<npc></npc>", "<display></display>")
- setnpcdisplay("<npc></npc>", <class></class>)
Changes the display name and/or display class of the target NPC.
Returns 0 is successful, 1 if the NPC does not exist.
Size is 0 = normal 1 = small 2 = big.
setnpcdisplay("Test","Test NPC","1002","2"); //The NPC 'Test' will receive the name 'Test NPC', the disguise of a Poring, and be large like a Mastering. setnpcdisplay("Test","Test NPC","1002"); //The NPC 'Test' will receive the name 'Test NPC' and the disguise of a Poring. setnpcdisplay("Test","Test NPC"); //The NPC 'Test' will receive the name 'Test NPC'. setnpcdisplay("Test",1002); //The NPC 'Test' will receive the disguise of a Poring.