Transform player into MVP

mrlongshen

Noobies
Messages
1,126
Points
0
Age
36
Location
localhost 127.0.0.1
Emulator
Hello,

How to make an item that transform player to mvp ? and give additional status ?

For example: 

Player A equip custom accessory then Its will transform into MVP.

With that equip, its give additional status.

 
To transform you can use atcommand "@disguise monstername" if you want to use that with an item, you have to put that on the onequip script part.

And to undo you can put atcommad "@undisguise" in the unequip part of the item.

Additional stats are also part of the itemscript.

You can find about how they work here:

https://github.com/HerculesWS/Hercules/blob/master/doc/script_commands.txt

What you want is the *bonus function.

NVM, zhao has the better answer, i didn't know there was a disguise command. 

 
Last edited by a moderator:
@@mrlongshen

Script: <" disguise 1026; bonus bLuk,2;">OnUnequipScript: <" undisguise; ">
just put munak and Luk 2 for sample

change the monster id 1026 and the bonus stats

 
Last edited by a moderator:
Back
Top