Jump to content
  • 0

Instance Time


Kakaroto

Question


  • Group:  Members
  • Topic Count:  99
  • Topics Per Day:  0.02
  • Content Count:  623
  • Reputation:   94
  • Joined:  05/11/12
  • Last Seen:  

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"
Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

  • Group:  Developer
  • Topic Count:  10
  • Topics Per Day:  0.00
  • Content Count:  2407
  • Reputation:   613
  • Joined:  07/05/12
  • Last Seen:  

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
Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  117
  • Topics Per Day:  0.03
  • Content Count:  312
  • Reputation:   34
  • Joined:  10/15/12
  • Last Seen:  


//warp "dali",49,127;

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  99
  • Topics Per Day:  0.02
  • Content Count:  623
  • Reputation:   94
  • Joined:  05/11/12
  • Last Seen:  

 

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.

Link to comment
Share on other sites

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.

×
×
  • Create New...