Rhaven Posted January 16, 2013 Posted January 16, 2013 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. Quote
Fai T.Flowright Posted January 16, 2013 Posted January 16, 2013 (edited) u mean limited time items? Just change the npc script rentitem (ItemID),(timeminutes); example: rentitem 5022,604800; Edited January 16, 2013 by Fai T.Flowright Quote
nanakiwurtz Posted January 16, 2013 Posted January 16, 2013 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; Quote
AnnieRuru Posted January 16, 2013 Posted January 16, 2013 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+ Quote
Rhaven Posted January 17, 2013 Author Posted January 17, 2013 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. Quote
Rhaven Posted January 18, 2013 Author Posted January 18, 2013 Its like I have to change #CASHPOINTS to 501 but how about option for 1 month and permanent? Quote
Question
Rhaven
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.
7 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.