Quesooo Posted April 8, 2017 Share Posted April 8, 2017 Good day ! rathena please help me with this the functions is a player go to my website > he click donations > and put donation to earn credit points > after that player go to log in and play ingame > now he want to claim her credits to a npc the npc will give TCG base on credit points he have Quote Link to comment Share on other sites More sharing options...
0 crazyarashi Posted April 8, 2017 Share Posted April 8, 2017 Before that have you checked if your flux donations is fully functional? :)) Quote Link to comment Share on other sites More sharing options...
0 Quesooo Posted April 8, 2017 Author Share Posted April 8, 2017 yes my flux is working normally Quote Link to comment Share on other sites More sharing options...
0 crazyarashi Posted April 8, 2017 Share Posted April 8, 2017 7 minutes ago, Questune09 said: yes my flux is working normally Try Thishttps://github.com/rathena/FluxCP/blob/master/data/npc/DonationNPC.txt 1 Quote Link to comment Share on other sites More sharing options...
0 Quesooo Posted April 8, 2017 Author Share Posted April 8, 2017 15 hours ago, crazyarashi said: Try Thishttps://github.com/rathena/FluxCP/blob/master/data/npc/DonationNPC.txt i think its working no error on my putty but my question now i set my credit on my website to 9999 but when i click the npc and redeem my reward or exchange it to item the npc said no record indicate on her list Quote Link to comment Share on other sites More sharing options...
0 Cyro Posted April 8, 2017 Share Posted April 8, 2017 To use that npc you need to use flux donation item mall system, so players buy items in fluxcp Try this npc which we made for my server This npc converts fluxcp donation credits to ingame cashpoints using sql query from cp_credits https://pastebin.com/wxZU9YH8 2 1 Quote Link to comment Share on other sites More sharing options...
0 quakeman00 Posted April 9, 2017 Share Posted April 9, 2017 but mail dosent even work in new clients Quote Link to comment Share on other sites More sharing options...
0 Quesooo Posted April 9, 2017 Author Share Posted April 9, 2017 On 4/8/2017 at 10:15 AM, Cyro said: To use that npc you need to use flux donation item mall system, so players buy items in fluxcp Try this npc which we made for my server This npc converts fluxcp donation credits to ingame cashpoints using sql query from cp_credits https://pastebin.com/wxZU9YH8 +1 thank you its working ^^ by the way do i change it to credits to TCG? thank you Quote Link to comment Share on other sites More sharing options...
0 Cyro Posted April 9, 2017 Share Posted April 9, 2017 Change Set #cashpoints to Getitem itemid 1 Quote Link to comment Share on other sites More sharing options...
0 Quesooo Posted April 9, 2017 Author Share Posted April 9, 2017 15 hours ago, Cyro said: Change Set #cashpoints to Getitem itemid thank you so much again Quote Link to comment Share on other sites More sharing options...
0 Quesooo Posted April 9, 2017 Author Share Posted April 9, 2017 15 hours ago, Cyro said: Change Set #cashpoints to Getitem itemid i also cant find it please modify the script 1 credit = 1 tcg thank you also please remove the color codes on script Quote Link to comment Share on other sites More sharing options...
0 crazyarashi Posted April 9, 2017 Share Posted April 9, 2017 prontera,255,255,5 script Cash Points Exchanger 758,{ set .@i, #CASHPOINTS; mes "[Cashpoints Exchanger]"; mes "You have ^0055FF"+.@i+" Cash Points^000000."; if (!.@i) { mes "Please come back later."; close; } mes "I can convert your ^FF0000Cash Points^000000 To a ^FF0000TCG^000000."; next; if(select(" - Trade: - ^777777Leave^000000")==2) close; mes "[Cashpoints Exchanger]"; mes "How many would you like to convert?"; next; input .@j; mes "[Cashpoints Exchanger]"; if (.@j < 1 || .@j > #CASHPOINTS) { mes "That's an invalid amount."; close; } mes "Are you sure you want to exchange ^0055FF"+.@j+" Cashpoints^000000?"; if(select(" - Yes: - No")==2) close; mes " "; set #CASHPOINTS, #CASHPOINTS-([email protected]*1); getitem 7227, .@j; mes "You now have "+countitem(7227)+" TCG."; close; } Cashpoints to TCG 1 Quote Link to comment Share on other sites More sharing options...
0 Quesooo Posted April 9, 2017 Author Share Posted April 9, 2017 15 hours ago, crazyarashi said: prontera,255,255,5 script Cash Points Exchanger 758,{ set .@i, #CASHPOINTS; mes "[Cashpoints Exchanger]"; mes "You have ^0055FF"+.@i+" Cash Points^000000."; if (!.@i) { mes "Please come back later."; close; } mes "I can convert your ^FF0000Cash Points^000000 To a ^FF0000TCG^000000."; next; if(select(" - Trade: - ^777777Leave^000000")==2) close; mes "[Cashpoints Exchanger]"; mes "How many would you like to convert?"; next; input .@j; mes "[Cashpoints Exchanger]"; if (.@j < 1 || .@j > #CASHPOINTS) { mes "That's an invalid amount."; close; } mes "Are you sure you want to exchange ^0055FF"+.@j+" Cashpoints^000000?"; if(select(" - Yes: - No")==2) close; mes " "; set #CASHPOINTS, #CASHPOINTS-([email protected]*1); getitem 7227, .@j; mes "You now have "+countitem(7227)+" TCG."; close; } Cashpoints to TCG thank you Quote Link to comment Share on other sites More sharing options...
0 Cyro Posted April 9, 2017 Share Posted April 9, 2017 prontera,144,171,6 script Donation Manager 89,{ mes "[Jimmy John]"; mes "Would you like to convert your Donation Credit to TcG"; mes "Exchange Rate:"; mes "^0000FF1^000000 Donation Credit = one TCG"; next; set @dCreds,query_sql("SELECT `balance` FROM cp_credits WHERE `account_id` = "+getcharid(3)+";",.@dCreds); mes "Please select the service you want:"; next; menu "^FF0000Exchange",dpExc,"^0000FFCheck Points/Credits",checkPoints,"^00FF00Quit",LeEnd; dpExc: mes "Available Cash Point to Exchange from Donation Credit : ^0000FF" + .@dCreds + "^000000"; next; mes "How many ^FF0000 Cash Point ^000000 do you want?"; input @ExchangeECd; if (.@dCreds < @ExchangeECd) goto ENeedDcredits; mes "That will be ^0000FF" + @ExchangeECd + "^000000 Donation Credits!"; menu "Yes, I am sure.",LEyesd,"I will decide later...^000000",LEno; LEyesd: set .@dCBal,.@dCreds-@ExchangeECd; query_sql("UPDATE `cp_credits` SET `balance` = "+.@dCBal+" WHERE account_id = "+getcharid(3)+";"); getitem 7227,@ExchangeECd; next; goto Edis2; close; LEno: mes "Thanks you ^0000FF" + strcharinfo(0) + "^000000!"; mes "And done come again!"; close; Edis2: mes "Your Donation Credit = ^0000FF" + .@dCBal + "^000000!"; mes "Your Cash Point = ^0000FF" + #CASHPOINTS + "^000000! "; close; ENeedDcredits: mes "Sorry, you don't have enough Donation Credits."; close; checkPoints: mes "Your Donation Credit = ^0000FF" + .@dCreds + "^000000!"; mes "Your Cash Point = ^0000FF" + #CASHPOINTS + "^000000! "; close; LeEnd: close; OnInit: waitingroom "Redeem Donation",0; end; } 1 Quote Link to comment Share on other sites More sharing options...
0 mrfizi Posted August 23, 2018 Share Posted August 23, 2018 On 4/9/2017 at 1:15 AM, Cyro said: To use that npc you need to use flux donation item mall system, so players buy items in fluxcp Try this npc which we made for my server This npc converts fluxcp donation credits to ingame cashpoints using sql query from cp_credits https://pastebin.com/wxZU9YH8 @Cyro how to make it change 1 Donation Credits to 1000 Cash Point ? Quote Link to comment Share on other sites More sharing options...
0 crazyarashi Posted August 23, 2018 Share Posted August 23, 2018 16 minutes ago, mrfizi said: @Cyro how to make it change 1 Donation Credits to 1000 Cash Point ? set #CASHPOINTS,#[email protected]; to set #CASHPOINTS,#CASHPOINTS + (@ExchangeECd*1000); 1 Quote Link to comment Share on other sites More sharing options...
0 mrfizi Posted August 23, 2018 Share Posted August 23, 2018 12 minutes ago, crazyarashi said: set #CASHPOINTS,#[email protected]; to set #CASHPOINTS,#CASHPOINTS + (@ExchangeECd*1000); Thank you so much for your fast reply.. +1 Quote Link to comment Share on other sites More sharing options...
Good day !
rathena
please help me with this
the functions is
a player go to my website > he click donations > and put donation to earn
credit points > after that player go to log in and play ingame > now he want to
claim her credits to a npc
the npc will give TCG base on credit points he have
Link to comment
Share on other sites