zeshan321 Posted June 22, 2014 Posted June 22, 2014 File Name: Kafra points converter File Submitter: zeshan321 File Submitted: 17 Jun 2014 File Category: Utilities Content Author: zeshan321This script allows users to convert their kafra points to any item set in the script. Click here to download this file Quote
Titan Posted October 24, 2014 Posted October 24, 2014 thanks for the script..can i use cashpoints instead of kafrapoints? Quote
Checkmate Posted October 25, 2014 Posted October 25, 2014 thanks for the script..can i use cashpoints instead of kafrapoints? Sure you can but you need to change the variable.. What i mean is.. maybe from @points(Kafra_Points) into @cash(Cash_Points).. Correct me if im were wrong. Quote
Radian Posted October 25, 2014 Posted October 25, 2014 Yea, replace this part .@amount2 = (.@amount * .NP); .@points = (#KAFRAPOINTS); if (.@amount2 > .@points) { mes .NPC$; mes "You do not have enough points!"; close; } if (#KAFRAPOINTS == 0) { mes .NPC$; mes "You have 0 kafra points!"; close; } mes .NPC$; mes "Here you go!"; set #KAFRAPOINTS,#KAFRAPOINTS - .@amount2; getitem .ID,.@amount; close; into this .@amount2 = (.@amount * .NP); .@points = (#CASHPOINTS); if (.@amount2 > .@points) { mes .NPC$; mes "You do not have enough points!"; close; } if (#CASHPOINTS == 0) { mes .NPC$; mes "You have 0 kafra points!"; close; } mes .NPC$; mes "Here you go!"; set #CASHPOINTS,#CASHPOINTS - .@amount2; getitem .ID,.@amount; close; Quote
Titan Posted October 27, 2014 Posted October 27, 2014 thanks for the script..can i use cashpoints instead of kafrapoints? Sure you can but you need to change the variable.. What i mean is.. maybe from @points(Kafra_Points) into @cash(Cash_Points).. Correct me if im were wrong. Yea, replace this part .@amount2 = (.@amount * .NP); .@points = (#KAFRAPOINTS); if (.@amount2 > .@points) { mes .NPC$; mes "You do not have enough points!"; close; } if (#KAFRAPOINTS == 0) { mes .NPC$; mes "You have 0 kafra points!"; close; } mes .NPC$; mes "Here you go!"; set #KAFRAPOINTS,#KAFRAPOINTS - .@amount2; getitem .ID,.@amount; close; into this .@amount2 = (.@amount * .NP); .@points = (#CASHPOINTS); if (.@amount2 > .@points) { mes .NPC$; mes "You do not have enough points!"; close; } if (#CASHPOINTS == 0) { mes .NPC$; mes "You have 0 kafra points!"; close; } mes .NPC$; mes "Here you go!"; set #CASHPOINTS,#CASHPOINTS - .@amount2; getitem .ID,.@amount; close; ok will try it on my test server.. Quote
cadz Posted March 14, 2021 Posted March 14, 2021 On 10/25/2014 at 3:11 PM, Radian said: Yea, replace this part .@amount2 = (.@amount * .NP); .@points = (#KAFRAPOINTS); if (.@amount2 > .@points) { mes .NPC$; mes "You do not have enough points!"; close; } if (#KAFRAPOINTS == 0) { mes .NPC$; mes "You have 0 kafra points!"; close; } mes .NPC$; mes "Here you go!"; set #KAFRAPOINTS,#KAFRAPOINTS - .@amount2; getitem .ID,.@amount; close; into this .@amount2 = (.@amount * .NP); .@points = (#CASHPOINTS); if (.@amount2 > .@points) { mes .NPC$; mes "You do not have enough points!"; close; } if (#CASHPOINTS == 0) { mes .NPC$; mes "You have 0 kafra points!"; close; } mes .NPC$; mes "Here you go!"; set #CASHPOINTS,#CASHPOINTS - .@amount2; getitem .ID,.@amount; close; hi sir how about item to kafrapoints? Quote
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.