D d4xyjen New member Messages 6 Points 0 Nov 21, 2013 #2 im just new here i want to know where to find on the database the points for each account on cash shop thanks
im just new here i want to know where to find on the database the points for each account on cash shop thanks
J jaBote Community Contributors Messages 2,037 Points 0 Github jaBote Nov 21, 2013 #3 They are stored as account variable on the scripting engine, named #CASHPOINTS and #KAFRAPOINTS if I remember well.
They are stored as account variable on the scripting engine, named #CASHPOINTS and #KAFRAPOINTS if I remember well.
D d4xyjen New member Messages 6 Points 0 Nov 21, 2013 #4 i was referring to the FreeCash and CashPoints on the cash shop menu where i could find them on the database i mean on the sql Last edited by a moderator: Nov 21, 2013
i was referring to the FreeCash and CashPoints on the cash shop menu where i could find them on the database i mean on the sql
J jaBote Community Contributors Messages 2,037 Points 0 Github jaBote Nov 21, 2013 #5 On the global_reg_value table, associated with the respective account ID they belong to.
D d4xyjen New member Messages 6 Points 0 Nov 21, 2013 #6 thanks for the reply for example i want to add points on it what would be my values? on the querry? INSERT INTO `ragnarok`.`global_reg_value` ( `char_id` , `str` , `value` , `type` , `account_id` ) VALUES ( '???', '???S', '???', '?', ?' ); Last edited by a moderator: Nov 21, 2013
thanks for the reply for example i want to add points on it what would be my values? on the querry? INSERT INTO `ragnarok`.`global_reg_value` ( `char_id` , `str` , `value` , `type` , `account_id` ) VALUES ( '???', '???S', '???', '?', ?' );
Q quesoph New member Messages 562 Points 0 Location Philippines Emulator Nov 21, 2013 #7 Ingame. key in @cash 123 //for cash points@points 123 // for kafra points / free points Script Code: set #CASHPOINTS, #CASHPOINTS + 123; //for cash pointsset #KAFRAPOINTS, #KAFRAPOINTS + 123; // for kafra points / free points Last edited by a moderator: Nov 21, 2013
Ingame. key in @cash 123 //for cash points@points 123 // for kafra points / free points Script Code: set #CASHPOINTS, #CASHPOINTS + 123; //for cash pointsset #KAFRAPOINTS, #KAFRAPOINTS + 123; // for kafra points / free points
J jaBote Community Contributors Messages 2,037 Points 0 Github jaBote Nov 21, 2013 #8 I'd avoid to directly insert cashpoints to people on the SQL, just update the value if it is available there.
I'd avoid to directly insert cashpoints to people on the SQL, just update the value if it is available there.