Jump to content
  • 0
Sign in to follow this  
N e s s

warper and kicker

Question

can someone help me smile.png


 


i need:


 


1. a warp portal will appear in certain coordinate point in prontera (for example in the middle of prontera) (onclock)


2. that warp portal will warp players to a specific map (for example izlude)


3. then after 5 mins all players in that specific map will be sent to their respective save point or specific coordinate point.


4. then the warp portal summoned on the first step will be invisible.


 

Share this post


Link to post
Share on other sites

6 answers to this question

Recommended Posts

  • 0

This should do the trick: http://pastebin.com/LW96X5dV

 

By default (OnInit), the warp will not show.

At 0000, the script will enable the warp (called 'warp kicker').

 

After 5 minutes (OnTimer300000), the warp will be disabled.

And everyone from izlude 0 0 to izlude 300 300 will be warped to amatsu 200 200.

 

edit: please change FAKENPC to FAKE_NPC :D

 

-   script  Warp Kicker FAKE_NPC,{
 
OnClock0000:
    enablenpc "warpkicker";
    hideoffnpc "warpkicker";
    initnpctimer;
    end;
   
//After 5 minutes
OnTimer300000:
    disablenpc "warpkicker";
    hideonnpc "warpkicker";
    areawarp "izlude",0,0,300,300,"amatsu",200,200;
    stopnpctimer;
    end;
 
OnInit:
    disablenpc "warpkicker";
    hideonnpc "warpkicker";
    end;
 
}
 
prontera,150,150,0  warp    warpkicker  2,2,izlude,150,50
Edited by True Zeal

Share this post


Link to post
Share on other sites
  • 0

 

This should do the trick: http://pastebin.com/LW96X5dV

 

By default (OnInit), the warp will not show.

At 0000, the script will enable the warp (called 'warp kicker').

 

After 5 minutes (OnTimer300000), the warp will be disabled.

And everyone from izlude 0 0 to izlude 300 300 will be warped to amatsu 200 200.

 

edit: please change FAKENPC to FAKE_NPC :D

 

-   script  Warp Kicker FAKE_NPC,{
 
OnClock0000:
    enablenpc "warpkicker";
    hideoffnpc "warpkicker";
    initnpctimer;
    end;
   
//After 5 minutes
OnTimer300000:
    disablenpc "warpkicker";
    hideonnpc "warpkicker";
    areawarp "izlude",0,0,300,300,"amatsu",200,200;
    stopnpctimer;
    end;
 
OnInit:
    disablenpc "warpkicker";
    hideonnpc "warpkicker";
    end;
 
}
 
prontera,150,150,0  warp    warpkicker  2,2,izlude,150,50

ill try this one master true zeal!

Share this post


Link to post
Share on other sites
  • 0

 

This should do the trick: http://pastebin.com/LW96X5dV

 

By default (OnInit), the warp will not show.

At 0000, the script will enable the warp (called 'warp kicker').

 

After 5 minutes (OnTimer300000), the warp will be disabled.

And everyone from izlude 0 0 to izlude 300 300 will be warped to amatsu 200 200.

 

edit: please change FAKENPC to FAKE_NPC :D

 

-   script  Warp Kicker FAKE_NPC,{
 
OnClock0000:
    enablenpc "warpkicker";
    hideoffnpc "warpkicker";
    initnpctimer;
    end;
   
//After 5 minutes
OnTimer300000:
    disablenpc "warpkicker";
    hideonnpc "warpkicker";
    areawarp "izlude",0,0,300,300,"amatsu",200,200;
    stopnpctimer;
    end;
 
OnInit:
    disablenpc "warpkicker";
    hideonnpc "warpkicker";
    end;
 
}
 
prontera,150,150,0  warp    warpkicker  2,2,izlude,150,50

hey sir i would like to know what is the meaning of these lines:

 

areawarp "izlude",0,0,300,300,"amatsu",200,200; // what is the purpose of "izlude",0,0,300,300?

 

prontera,150,150,0  warp    warpkicker  2,2,izlude,150,50 // what is the purspose of 2,2,izlude,150,50?

Share this post


Link to post
Share on other sites
  • 0

@ness:

 

 

areawarp "izlude",0,0,300,300,"amatsu",200,200; // what is the purpose of "izlude",0,0,300,300?

*areawarp("<from map name>", <x1>, <y1>, <x2>, <y2>, "<to map name>", <x3>, <y3>{, <x4>, <y4>})

 

 

 

 

 prontera,150,150,0  warp    warpkicker  2,2,izlude,150,50 // what is the purspose of 2,2,izlude,150,50?

<from map name>,<fromX>,<fromY>{,<facing>}%TAB%warp%TAB%<warp name>%TAB%<spanx>,<spany>,<to map name>,<toX>,<toY>

Share this post


Link to post
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.   Restore formatting

  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.

Loading...
Sign in to follow this  

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.