Jump to content

Question

Posted
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.

 

 

MXA79LB.jpg

 

after passing through the portal:

 

cZHC6nV.png

 

 

 

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"

3 answers to this question

Recommended Posts

  • 0
Posted

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;
}
  • Upvote 1
  • 0
Posted

 

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.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...