Jump to content
  • 0

Customized Payed Warper


Meister

Question


  • Group:  Members
  • Topic Count:  280
  • Topics Per Day:  0.06
  • Content Count:  841
  • Reputation:   17
  • Joined:  04/16/12
  • Last Seen:  

Hi can I request for a payed warper via zeny? E.G. warper can only be used if NPC is payed by 5k. This is applicable after the warp.

 

Also, the maps included are the maps that are not quest maps.

 

Is it possible? Thanks!

Link to comment
Share on other sites

3 answers to this question

Recommended Posts


  • Group:  Forum Moderator
  • Topic Count:  33
  • Topics Per Day:  0.01
  • Content Count:  1268
  • Reputation:   382
  • Joined:  02/03/12
  • Last Seen:  

After:

function Go {

Add:
	set .@price,5000;
	if(Zeny<.@price){mes "I'm sorry you don't have enought Zeny to warp, please try again later."; close;}
	set Zeny,Zeny-.@price;
After:

function Pick {

Add:
	set .@price,5000;
	if(Zeny<.@price){mes "I'm sorry you don't have enought Zeny to warp, please try again later."; close;}
	set Zeny,Zeny-.@price;
  • Upvote 2
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  14
  • Topics Per Day:  0.00
  • Content Count:  403
  • Reputation:   89
  • Joined:  02/07/13
  • Last Seen:  

Add this at begining of your script

 

set .@Price,5000;    // Zeny required for warp

 

 

    if (.@Price) {
        message strcharinfo(0),"Warping costs "+.@Price+" Zeny.";
        if (Zeny < .@Price) end;
        //Warping script here
        set Zeny, Zeny-.@Price; // Write this BEFORE teleport
    }
Edited by Shakto
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  280
  • Topics Per Day:  0.06
  • Content Count:  841
  • Reputation:   17
  • Joined:  04/16/12
  • Last Seen:  

How can I add it on the warper of rathena?

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