Jump to content
  • 0

Premium Account Script


Rhaven

Question


  • Group:  Members
  • Topic Count:  14
  • Topics Per Day:  0.00
  • Content Count:  56
  • Reputation:   1
  • Joined:  11/09/12
  • Last Seen:  

About this topic http://rathena.org/board/topic/71611-premium-account-help-needed/

I just want to ask about this script.

If want to change Cash Point to specific item ex. apple

and have an option for 1 month and permanent

1 month = 1 apple

permanent = 2 apples

Thanks.

Link to comment
Share on other sites

7 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  25
  • Topics Per Day:  0.01
  • Content Count:  155
  • Reputation:   2
  • Joined:  10/09/12
  • Last Seen:  

u mean limited time items? Just change the npc script

rentitem (ItemID),(timeminutes); 
example:
rentitem 5022,604800; 

Edited by Fai T.Flowright
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  81
  • Topics Per Day:  0.02
  • Content Count:  1654
  • Reputation:   583
  • Joined:  08/09/12
  • Last Seen:  

I think what he means is, he wants to use the item (apple) in exchange of gmlevel 1 for 1 months.

So instead of using #CASHPOINTS, he wants to use an item.

if (countitem(502) < 1) {mes "You don't have enough apple to exchange";close;}
mes "It looks like you have "+countitem(502)+" apple.";
mes "If you click the next button, I'll take 1 of your apple.";
next;
delitem 502,1;
mes "Now you only have "+countitem(502)+" apple left.";
close;

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  18
  • Topics Per Day:  0.00
  • Content Count:  2044
  • Reputation:   682
  • Joined:  10/09/12
  • Last Seen:  

you can try mine

http://rathena.org/board/topic/77197-change-permission-can-trade-false-if-account-id/#entry171740

and for permanent, I think its better to create a new group that is separated

so its easier to tell apart which one is time limited, and which is permanent

group ID 1 = Super Player

group ID 2 = Super Player+

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  14
  • Topics Per Day:  0.00
  • Content Count:  56
  • Reputation:   1
  • Joined:  11/09/12
  • Last Seen:  

I think what he means is, he wants to use the item (apple) in exchange of gmlevel 1 for 1 months.

So instead of using #CASHPOINTS, he wants to use an item.

if (countitem(502) < 1) {mes "You don't have enough apple to exchange";close;}
mes "It looks like you have "+countitem(502)+" apple.";
mes "If you click the next button, I'll take 1 of your apple.";
next;
delitem 502,1;
mes "Now you only have "+countitem(502)+" apple left.";
close;

Yes, that's what I mean. If you have 1 apple you can trade it for 1 month premium account. If you have 2 apples you can trade it for permanent account.

you can try mine

http://rathena.org/b...id/#entry171740

and for permanent, I think its better to create a new group that is separated

so its easier to tell apart which one is time limited, and which is permanent

group ID 1 = Super Player

group ID 2 = Super Player+

How does this script works AnnieRuru? I test it and its only for admin. What I meant was the player to change the specific item to change their group_id for limited time and permanently.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  14
  • Topics Per Day:  0.00
  • Content Count:  56
  • Reputation:   1
  • Joined:  11/09/12
  • Last Seen:  

Its like I have to change #CASHPOINTS to 501

but how about option for 1 month and permanent?

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  14
  • Topics Per Day:  0.00
  • Content Count:  56
  • Reputation:   1
  • Joined:  11/09/12
  • Last Seen:  

bump!

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  14
  • Topics Per Day:  0.00
  • Content Count:  56
  • Reputation:   1
  • Joined:  11/09/12
  • Last Seen:  

Please help! /help

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