Kakaroto Posted April 24, 2016 Posted April 24, 2016 Hello good afternoon, I have a very strange problem in one instance I am trying condificar for rathena, start it normally, but just this part, when I enter the portal the instance time changes, and npc's are in trouble, they're not hiding. after passing through the portal: warp script: 1@spa,54,28,0 script #gp3warp WARPNPC,1,1,{ if(!'gp5) { warp "1@spa",218,186; } else { if (checkquest(40024) == -1) setquest 40024; warp "dali",49,127; } end; } quest_db: 40024,72000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"Test" Quote
0 Capuche Posted April 24, 2016 Posted April 24, 2016 Your character is warped on the 'main' map 1@spa, not in the instance map. 1@spa,54,28,0 script #gp3warp WARPNPC,1,1,{ if ( instance_id() < 0 ) end; if( !'gp5 && instance_mapname("1@spa") != "" ) warp instance_mapname("1@spa"),218,186; else { if (checkquest(40024) == -1) setquest 40024; warp "dali",49,127; } end; } 1 Quote
0 Kakaroto Posted April 24, 2016 Author Posted April 24, 2016 Your character is warped on the 'main' map 1@spa, not in the instance map. 1@spa,54,28,0 script #gp3warp WARPNPC,1,1,{ if ( instance_id() < 0 ) end; if( !'gp5 && instance_mapname("1@spa") != "" ) warp instance_mapname("1@spa"),218,186; else { if (checkquest(40024) == -1) setquest 40024; warp "dali",49,127; } end; } Thank you, it worked perfectly. Quote
Question
Kakaroto
after passing through the portal:
warp script:
quest_db:
3 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.