Jump to content
  • 0

N>Warper npc to a certain map?


chromus28

Question


  • Group:  Members
  • Topic Count:  91
  • Topics Per Day:  0.02
  • Content Count:  263
  • Reputation:   1
  • Joined:  04/25/13
  • Last Seen:  

Is there any script there that they will warp you to a certain map after you finish some quest from it? Like you need to farm 100 jellopies to get a key to that map? You cannot wapr in that map if you dont have that key

Link to comment
Share on other sites

3 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  30
  • Topics Per Day:  0.01
  • Content Count:  208
  • Reputation:   11
  • Joined:  05/31/12
  • Last Seen:  

let me see nice script so you are saying that if i am going to hunt this kind of item i am just needing to put the item name?

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  91
  • Topics Per Day:  0.02
  • Content Count:  263
  • Reputation:   1
  • Joined:  04/25/13
  • Last Seen:  

More like a trade. You will hunt "item" for the npc to trade a key to enter to a certain map

Up

Guys anyone have this script?? Before you can enter the custom map the npc will ask you for a key to enter the map

no one have it?? T_T

T_T Please help guysss

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  38
  • Topics Per Day:  0.01
  • Content Count:  949
  • Reputation:   174
  • Joined:  06/12/12
  • Last Seen:  

First, add the map in mapflag/nowarpto.txt

 

Then check the code below..

if(MapAccess > 0) goto L_Done;
mes "You need 100 Jellopy to access this ozom map!";
next;
if(countitem(909) < 100) {
mes "Get me 100 Jellopies you nab.";
close;
}
set MapAccess,1;
delitem 909,100;
goto L_Done;
close;
 
 
L_Done:
mes "You will now be warped.";
warp "some_map",123,123; //Edit map and coordinates
close;
Edited by sandbox
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...