Having some errors, with this script, for the first NPC, dialogue won't go to the next section and just freezes there.
Picture:
Spoiler
Spoiler
prontera,156,150,4 script Fishing Guru 560,{ goto FishGuru; FishGuru: mes $@NPC_Fishing$; mes "Im the known ^ff007fFishing-Guru^000000."; //cutin $FishingGuru$,3; next; goto Selection; close; Selection: mes $@NPC_Fishing$; mes "What do you want from me?"; //cutin $@FishingGuru1$,3; next; // =============================================================== DONT CHANGE ANYTHING HERE. if($@Toggle == 0 || $@Toggle == 1 || $@Toggle == 2 ) { menu "^007744[ Fishing Rank ]^000000",FishingRank,"^3333ff[ Fish Box Level ]^000000",FishingBox; } if($@Toggle == 3 || $@Toggle == 4) { if(CanFishNow == 1) menu "^007744[ Fishing Rank ]^000000",FishingRank,"^3333ff[ Fish Box Level ]^000000",FishingBox; } if($@Toggle == 3 || $@Toggle == 4) { if(CanFishNow == 0) menu "^00007f[ How to fish? ]^000000",FishInformation; } // =============================================================== DONT CHANGE ANYTHING HERE. close; FishInformation: next; callfunc "FishingManualQuest"; close; FishingRank: next; goto FishRank; close; FishingBox: next; goto FBLevel; close; FishRank: mes $@NPC_Fishing$ ; mes "[ ^ff5500Fishing Rank^000000 ]"; mes "Level: [ ^ffaa00" + FishingLevel + "^000000 ]"; mes "Title: [ ^ff0000" + $@FishingLevelName$[ FishingLevel ] + "^000000 ]"; mes "Experience: [ ^ff007f" + FishingNowExp + "^000000 / ^55007f" + $@FishingExpMax[ FishingLevel ] + "^000000 ]"; //cutin $@FishingRank$,3; next; menu "^00ff00[ Main Menu ]^000000",Selection; close;