Kakaroto Posted April 24, 2016 Group: Members Topic Count: 99 Topics Per Day: 0.02 Content Count: 637 Reputation: 95 Joined: 05/11/12 Last Seen: 5 hours ago Share 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 Link to comment Share on other sites More sharing options...
0 Capuche Posted April 24, 2016 Group: Developer Topic Count: 10 Topics Per Day: 0.00 Content Count: 2407 Reputation: 616 Joined: 07/05/12 Last Seen: March 20 Share 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 Link to comment Share on other sites More sharing options...
0 iubantot Posted April 24, 2016 Group: Members Topic Count: 117 Topics Per Day: 0.03 Content Count: 312 Reputation: 34 Joined: 10/15/12 Last Seen: 20 hours ago Share Posted April 24, 2016 //warp "dali",49,127; Quote Link to comment Share on other sites More sharing options...
0 Kakaroto Posted April 24, 2016 Group: Members Topic Count: 99 Topics Per Day: 0.02 Content Count: 637 Reputation: 95 Joined: 05/11/12 Last Seen: 5 hours ago Author Share 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 Link to comment Share on other sites More sharing options...
Question
Kakaroto
after passing through the portal:
warp script:
quest_db:
Link to comment
Share on other sites
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.