ViewtifulNinja Posted October 28, 2021 Posted October 28, 2021 How do I make a script that automatically triggers an event when the character reaches a certain job level, without having to talk to any npc? Quote
0 Start_ Posted October 28, 2021 Posted October 28, 2021 Use OnPCBaseLvUpEvent \doc\script_commands.txt lines 934 You need to implement this on any scripts. (Example: \npc\test\OnInterInit.txt) Quote
0 Emistry Posted March 6, 2022 Posted March 6, 2022 On 10/28/2021 at 1:19 PM, ViewtifulNinja said: automatically triggers an event when the character reaches a certain job level - script sample -1,{ OnPCJobLvUpEvent: if (JobLevel >= 40) { // your codes. } end; } Quote
Question
ViewtifulNinja
How do I make a script that automatically triggers an event when the character reaches a certain job level, without having to talk to any npc?
2 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.