[How To Add] Always show emotion npc

hadiesyafiq

New member
Messages
160
Points
0
Age
35
Location
Malaysia
Github
hadiesyafiq
Emulator
Good Morning (Malaysia morning right now) Hercules

i wonder how possible to add emotion popup like this  (see attach picture) 

on my npc..?

thanks to all of you in advance

1.png

1-1.png

 
This is could be done using 2 script commands showevent() or questinfo() for more informations you can check the commands documentation https://github.com/HerculesWS/Hercules/blob/master/doc/script_commands.txt#L8976-L9017
i try like this but now work 

izlude,100,100,4    script    Test    102,{
        mes("[Test]");
        mes("Hello World.");
        close();
 
    OnInit:
        showevent(QTYPE_QUEST, 0);
        end;
    }
 
Back
Top