Tonetzkii Posted April 23, 2013 Group: Members Topic Count: 47 Topics Per Day: 0.01 Content Count: 323 Reputation: 9 Joined: 11/19/11 Last Seen: September 25, 2015 Share Posted April 23, 2013 Why i can't buy this item? Quote Link to comment Share on other sites More sharing options...
xeNium Posted April 23, 2013 Group: Members Topic Count: 26 Topics Per Day: 0.01 Content Count: 94 Reputation: 0 Joined: 04/01/12 Last Seen: January 1, 2017 Share Posted April 23, 2013 Because the NPC does not exist. I can't say more than that, lol. Hmm, bytheway where did you get the iRO Cash Shop Texture? Quote Link to comment Share on other sites More sharing options...
Tonetzkii Posted April 23, 2013 Group: Members Topic Count: 47 Topics Per Day: 0.01 Content Count: 323 Reputation: 9 Joined: 11/19/11 Last Seen: September 25, 2015 Author Share Posted April 23, 2013 Here http://rathena.org/board/files/ Quote Link to comment Share on other sites More sharing options...
Brynner Posted April 23, 2013 Group: Members Topic Count: 120 Topics Per Day: 0.02 Content Count: 1951 Reputation: 202 Joined: 01/08/12 Last Seen: 26 minutes ago Share Posted April 23, 2013 Because the NPC does not exist. I can't say more than that, lol. Hmm, bytheway where did you get the iRO Cash Shop Texture? lol it's not npc. it is happen when you did not declare the right packet that you are using on clif.c Quote Link to comment Share on other sites More sharing options...
exneval Posted April 23, 2013 Group: Members Topic Count: 3 Topics Per Day: 0.00 Content Count: 164 Reputation: 12 Joined: 01/03/12 Last Seen: November 18, 2019 Share Posted April 23, 2013 (edited) @xenium its not an NPC base, its a feature using packet structure on the main client, you need to modified the clif.c to the client date that you use Edited April 23, 2013 by exneval Quote Link to comment Share on other sites More sharing options...
Napster Posted April 23, 2013 Group: Members Topic Count: 11 Topics Per Day: 0.00 Content Count: 196 Reputation: 72 Joined: 12/12/11 Last Seen: November 6, 2016 Share Posted April 23, 2013 (edited) quick fix for 2012-2013 // TODO: find a more accurate date for this - #if PACKETVER < 20130320 /// Request to buy item(s) from cash shop (CZ_PC_BUY_CASH_POINT_ITEM). /// 0288 <name id>.W <amount>.W /// 0288 <name id>.W <amount>.W <kafra points>.L (PACKETVER >= 20070711) /// 0288 <packet len>.W <kafra points>.L <count>.W { <amount>.W <name id>.W }.4B*count (PACKETVER >= 20100803) void clif_parse_cashshop_buy(int fd, struct map_session_data *sd){ int fail = 0; nullpo_retv(sd); if( sd->state.trading || !sd->npc_shopid ) fail = 1; else { #if PACKETVER < 20101116 short nameid = RFIFOW(fd,2); short amount = RFIFOW(fd,4); int points = RFIFOL(fd,6); fail = npc_cashshop_buy(sd, nameid, amount, points); #else int len = RFIFOW(fd,2); int points = RFIFOL(fd,4); int count = RFIFOW(fd,8); unsigned short* item_list = (unsigned short*)RFIFOP(fd,10); if( len < 10 || len != 10 + count * 4) { ShowWarning("Player %u sent incorrect cash shop buy packet (len %u:%u)!\n", sd->status.char_id, len, 10 + count * 4); return; } fail = npc_cashshop_buylist(sd,points,count,item_list); #endif } clif_cashshop_ack(sd,fail); } - #endif and // TODO: find a more accurate date for this - #if PACKETVER >= 20130320 - void clif_parse_cashshop_buy( int fd, struct map_session_data *sd ){ + void clif_parse_cashshop_buy2( int fd, struct map_session_data *sd ){ uint16 length = RFIFOW( fd, 2 ); uint16 count = RFIFOL( fd, 4 ); if( length < 10 || length < ( 10 + count * 6 ) ){ return; } cashshop_buylist( sd, RFIFOL( fd, 6 ), count, (uint16 *)RFIFOP( fd, 10 ) ); } - #endif and { clif_parse_cashshop_open_request, "cashshopopen" }, { clif_parse_cashshop_close, "cashshopclose" }, { clif_parse_cashshop_list_request, "cashshopitemlist" }, { clif_parse_cashshop_buy, "cashshopbuy" }, + { clif_parse_cashshop_buy2, "cashshopbuy2" }, andpacket_db.txt // New cashshop + 0x0844,2,cashshopopen,0 + 0x084a,2,cashshopclose,0 + 0x08c9,4,cashshopitemlist,0 + 0x0848,-1,cashshopbuy2,0 //2010-08-03aRagexeRE 0x0839,66 0x0842,6,recall2,2 0x0843,6,remove2,2 Edited April 23, 2013 by Napster 1 Quote Link to comment Share on other sites More sharing options...
Jaburak Posted May 1, 2013 Group: Members Topic Count: 48 Topics Per Day: 0.01 Content Count: 1125 Reputation: 236 Joined: 07/30/12 Last Seen: Yesterday at 01:27 AM Share Posted May 1, 2013 Got the same problem. Anyone knows how to fix this? Quote Link to comment Share on other sites More sharing options...
LatSo Posted May 30, 2013 Group: Members Topic Count: 69 Topics Per Day: 0.02 Content Count: 296 Reputation: 2 Joined: 04/11/13 Last Seen: December 22, 2020 Share Posted May 30, 2013 quick fix for 2012-2013 // TODO: find a more accurate date for this - #if PACKETVER < 20130320 /// Request to buy item(s) from cash shop (CZ_PC_BUY_CASH_POINT_ITEM). /// 0288 <name id>.W <amount>.W /// 0288 <name id>.W <amount>.W <kafra points>.L (PACKETVER >= 20070711) /// 0288 <packet len>.W <kafra points>.L <count>.W { <amount>.W <name id>.W }.4B*count (PACKETVER >= 20100803) void clif_parse_cashshop_buy(int fd, struct map_session_data *sd){ int fail = 0; nullpo_retv(sd); if( sd->state.trading || !sd->npc_shopid ) fail = 1; else { #if PACKETVER < 20101116 short nameid = RFIFOW(fd,2); short amount = RFIFOW(fd,4); int points = RFIFOL(fd,6); fail = npc_cashshop_buy(sd, nameid, amount, points); #else int len = RFIFOW(fd,2); int points = RFIFOL(fd,4); int count = RFIFOW(fd,8); unsigned short* item_list = (unsigned short*)RFIFOP(fd,10); if( len < 10 || len != 10 + count * 4) { ShowWarning("Player %u sent incorrect cash shop buy packet (len %u:%u)!\n", sd->status.char_id, len, 10 + count * 4); return; } fail = npc_cashshop_buylist(sd,points,count,item_list); #endif } clif_cashshop_ack(sd,fail); } - #endif and // TODO: find a more accurate date for this - #if PACKETVER >= 20130320 - void clif_parse_cashshop_buy( int fd, struct map_session_data *sd ){ + void clif_parse_cashshop_buy2( int fd, struct map_session_data *sd ){ uint16 length = RFIFOW( fd, 2 ); uint16 count = RFIFOL( fd, 4 ); if( length < 10 || length < ( 10 + count * 6 ) ){ return; } cashshop_buylist( sd, RFIFOL( fd, 6 ), count, (uint16 *)RFIFOP( fd, 10 ) ); } - #endif and { clif_parse_cashshop_open_request, "cashshopopen" }, { clif_parse_cashshop_close, "cashshopclose" }, { clif_parse_cashshop_list_request, "cashshopitemlist" }, { clif_parse_cashshop_buy, "cashshopbuy" }, + { clif_parse_cashshop_buy2, "cashshopbuy2" }, and packet_db.txt // New cashshop + 0x0844,2,cashshopopen,0 + 0x084a,2,cashshopclose,0 + 0x08c9,4,cashshopitemlist,0 + 0x0848,-1,cashshopbuy2,0 //2010-08-03aRagexeRE 0x0839,66 0x0842,6,recall2,2 0x0843,6,remove2,2 can't understand a thing what to do here Quote Link to comment Share on other sites More sharing options...
Brynner Posted May 30, 2013 Group: Members Topic Count: 120 Topics Per Day: 0.02 Content Count: 1951 Reputation: 202 Joined: 01/08/12 Last Seen: 26 minutes ago Share Posted May 30, 2013 since the copy paste solution was incomplete. here is the better one to make it work you should first configure your src\map\clif.c then look for 20130320 // TODO: find a more accurate date for this #if PACKETVER < 20130320 /// Request to buy item(s) from cash shop (CZ_PC_BUY_CASH_POINT_ITEM). /// 0288 <name id>.W <amount>.W /// 0288 <name id>.W <amount>.W <kafra points>.L (PACKETVER >= 20070711) /// 0288 <packet len>.W <kafra points>.L <count>.W { <amount>.W <name id>.W }.4B*count (PACKETVER >= 20100803) you should replace the 20130320 with your client version. just like 20120410 and find again 20130320 // TODO: find a more accurate date for this #if PACKETVER >= 20130320 void clif_parse_cashshop_buy( int fd, struct map_session_data *sd ){ uint16 length = RFIFOW( fd, 2 ); uint16 count = RFIFOL( fd, 4 ); replace again the 20130320 with your client version. just like 20120410 and also add the packet on your packet_db.txt add this line on the end of your client version. 20120410 // New cashshop 0x0844,2,cashshopopen,0 0x084a,2,cashshopclose,0 0x08c9,4,cashshopitemlist,0 0x0848,-1,cashshopbuy,0 then recompile. Quote Link to comment Share on other sites More sharing options...
LatSo Posted May 30, 2013 Group: Members Topic Count: 69 Topics Per Day: 0.02 Content Count: 296 Reputation: 2 Joined: 04/11/13 Last Seen: December 22, 2020 Share Posted May 30, 2013 since the copy paste solution was incomplete. here is the better one to make it work you should first configure your src\map\clif.c then look for 20130320 // TODO: find a more accurate date for this #if PACKETVER < 20130320 /// Request to buy item(s) from cash shop (CZ_PC_BUY_CASH_POINT_ITEM). /// 0288 <name id>.W <amount>.W /// 0288 <name id>.W <amount>.W <kafra points>.L (PACKETVER >= 20070711) /// 0288 <packet len>.W <kafra points>.L <count>.W { <amount>.W <name id>.W }.4B*count (PACKETVER >= 20100803) you should replace the 20130320 with your client version. just like 20120410 and find again 20130320 // TODO: find a more accurate date for this #if PACKETVER >= 20130320 void clif_parse_cashshop_buy( int fd, struct map_session_data *sd ){ uint16 length = RFIFOW( fd, 2 ); uint16 count = RFIFOL( fd, 4 ); replace again the 20130320 with your client version. just like 20120410 and also add the packet on your packet_db.txt add this line on the end of your client version. 20120410 // New cashshop 0x0844,2,cashshopopen,0 0x084a,2,cashshopclose,0 0x08c9,4,cashshopitemlist,0 0x0848,-1,cashshopbuy,0 then recompile. I tried it and at last I saw the items on cash shop. BUT I CANT BUY A THING. and the text are not english. Quote Link to comment Share on other sites More sharing options...
iubantot Posted June 1, 2013 Group: Members Topic Count: 117 Topics Per Day: 0.03 Content Count: 312 Reputation: 34 Joined: 10/15/12 Last Seen: January 7 Share Posted June 1, 2013 since the copy paste solution was incomplete. here is the better one to make it work you should first configure your src\map\clif.c then look for 20130320 // TODO: find a more accurate date for this #if PACKETVER < 20130320 /// Request to buy item(s) from cash shop (CZ_PC_BUY_CASH_POINT_ITEM). /// 0288 <name id>.W <amount>.W /// 0288 <name id>.W <amount>.W <kafra points>.L (PACKETVER >= 20070711) /// 0288 <packet len>.W <kafra points>.L <count>.W { <amount>.W <name id>.W }.4B*count (PACKETVER >= 20100803) you should replace the 20130320 with your client version. just like 20120410 and find again 20130320 // TODO: find a more accurate date for this #if PACKETVER >= 20130320 void clif_parse_cashshop_buy( int fd, struct map_session_data *sd ){ uint16 length = RFIFOW( fd, 2 ); uint16 count = RFIFOL( fd, 4 ); replace again the 20130320 with your client version. just like 20120410 and also add the packet on your packet_db.txt add this line on the end of your client version. 20120410 // New cashshop 0x0844,2,cashshopopen,0 0x084a,2,cashshopclose,0 0x08c9,4,cashshopitemlist,0 0x0848,-1,cashshopbuy,0 then recompile. i did this too but now i cant buy any items on cash shop Quote Link to comment Share on other sites More sharing options...
Brynner Posted June 1, 2013 Group: Members Topic Count: 120 Topics Per Day: 0.02 Content Count: 1951 Reputation: 202 Joined: 01/08/12 Last Seen: 26 minutes ago Share Posted June 1, 2013 can you post your changes on your clif.c and your packet_db.txt only the packet version that you are using Quote Link to comment Share on other sites More sharing options...
LatSo Posted June 2, 2013 Group: Members Topic Count: 69 Topics Per Day: 0.02 Content Count: 296 Reputation: 2 Joined: 04/11/13 Last Seen: December 22, 2020 Share Posted June 2, 2013 since the copy paste solution was incomplete. here is the better one to make it work you should first configure your src\map\clif.c then look for 20130320 // TODO: find a more accurate date for this #if PACKETVER < 20130320 /// Request to buy item(s) from cash shop (CZ_PC_BUY_CASH_POINT_ITEM). /// 0288 <name id>.W <amount>.W /// 0288 <name id>.W <amount>.W <kafra points>.L (PACKETVER >= 20070711) /// 0288 <packet len>.W <kafra points>.L <count>.W { <amount>.W <name id>.W }.4B*count (PACKETVER >= 20100803) you should replace the 20130320 with your client version. just like 20120410 and find again 20130320 // TODO: find a more accurate date for this #if PACKETVER >= 20130320 void clif_parse_cashshop_buy( int fd, struct map_session_data *sd ){ uint16 length = RFIFOW( fd, 2 ); uint16 count = RFIFOL( fd, 4 ); replace again the 20130320 with your client version. just like 20120410 and also add the packet on your packet_db.txt add this line on the end of your client version. 20120410 // New cashshop 0x0844,2,cashshopopen,0 0x084a,2,cashshopclose,0 0x08c9,4,cashshopitemlist,0 0x0848,-1,cashshopbuy,0 then recompile. i did this too but now i cant buy any items on cash shop I have the same error like that before, that happen when I copy paste the packet_db posted on some other topic, what I did is to delete my packet_db then update my svn to get a fresh and clean copy of packet_db. Then i added the packets of cashshop on 20120410 packet_ver. Dont forget to edit clif.c Quote Link to comment Share on other sites More sharing options...
Brynner Posted June 2, 2013 Group: Members Topic Count: 120 Topics Per Day: 0.02 Content Count: 1951 Reputation: 202 Joined: 01/08/12 Last Seen: 26 minutes ago Share Posted June 2, 2013 since the copy paste solution was incomplete. here is the better one to make it work you should first configure your src\map\clif.c then look for 20130320 // TODO: find a more accurate date for this #if PACKETVER < 20130320 /// Request to buy item(s) from cash shop (CZ_PC_BUY_CASH_POINT_ITEM). /// 0288 <name id>.W <amount>.W /// 0288 <name id>.W <amount>.W <kafra points>.L (PACKETVER >= 20070711) /// 0288 <packet len>.W <kafra points>.L <count>.W { <amount>.W <name id>.W }.4B*count (PACKETVER >= 20100803) you should replace the 20130320 with your client version. just like 20120410 and find again 20130320 // TODO: find a more accurate date for this #if PACKETVER >= 20130320 void clif_parse_cashshop_buy( int fd, struct map_session_data *sd ){ uint16 length = RFIFOW( fd, 2 ); uint16 count = RFIFOL( fd, 4 ); replace again the 20130320 with your client version. just like 20120410 and also add the packet on your packet_db.txt add this line on the end of your client version. 20120410 // New cashshop 0x0844,2,cashshopopen,0 0x084a,2,cashshopclose,0 0x08c9,4,cashshopitemlist,0 0x0848,-1,cashshopbuy,0 then recompile. i did this too but now i cant buy any items on cash shop I have the same error like that before, that happen when I copy paste the packet_db posted on some other topic, what I did is to delete my packet_db then update my svn to get a fresh and clean copy of packet_db. Then i added the packets of cashshop on 20120410 packet_ver. Dont forget to edit clif.c maybe you did not follow the instruction. Quote Link to comment Share on other sites More sharing options...
iubantot Posted June 2, 2013 Group: Members Topic Count: 117 Topics Per Day: 0.03 Content Count: 312 Reputation: 34 Joined: 10/15/12 Last Seen: January 7 Share Posted June 2, 2013 since the copy paste solution was incomplete. here is the better one to make it work you should first configure your src\map\clif.c then look for 20130320 // TODO: find a more accurate date for this #if PACKETVER < 20130320 /// Request to buy item(s) from cash shop (CZ_PC_BUY_CASH_POINT_ITEM). /// 0288 <name id>.W <amount>.W /// 0288 <name id>.W <amount>.W <kafra points>.L (PACKETVER >= 20070711) /// 0288 <packet len>.W <kafra points>.L <count>.W { <amount>.W <name id>.W }.4B*count (PACKETVER >= 20100803) you should replace the 20130320 with your client version. just like 20120410 and find again 20130320 // TODO: find a more accurate date for this #if PACKETVER >= 20130320 void clif_parse_cashshop_buy( int fd, struct map_session_data *sd ){ uint16 length = RFIFOW( fd, 2 ); uint16 count = RFIFOL( fd, 4 ); replace again the 20130320 with your client version. just like 20120410 and also add the packet on your packet_db.txt add this line on the end of your client version. 20120410 // New cashshop 0x0844,2,cashshopopen,0 0x084a,2,cashshopclose,0 0x08c9,4,cashshopitemlist,0 0x0848,-1,cashshopbuy,0 then recompile. i did this too but now i cant buy any items on cash shop I have the same error like that before, that happen when I copy paste the packet_db posted on some other topic, what I did is to delete my packet_db then update my svn to get a fresh and clean copy of packet_db. Then i added the packets of cashshop on 20120410 packet_ver. Dont forget to edit clif.c maybe you did not follow the instruction. All working guys! thanks! Quote Link to comment Share on other sites More sharing options...
ZAGALiC Posted June 28, 2013 Group: Members Topic Count: 51 Topics Per Day: 0.01 Content Count: 125 Reputation: 0 Joined: 06/07/13 Last Seen: May 20, 2020 Share Posted June 28, 2013 Hello guys, I've got the same problem here. I've already tried the posted intruction from Brynner and still got the same problem. Nothing happens, when I click the OK Button to purchase some items, I can't seem to buy the item Anyone who could help me with this? Quote Link to comment Share on other sites More sharing options...
simplemhan Posted June 28, 2013 Group: Members Topic Count: 50 Topics Per Day: 0.01 Content Count: 308 Reputation: 3 Joined: 12/18/11 Last Seen: March 4, 2014 Share Posted June 28, 2013 try to check ur items also i managed to solve that same problem with u i just check my custom items. Quote Link to comment Share on other sites More sharing options...
helvetica Posted June 28, 2013 Group: Members Topic Count: 9 Topics Per Day: 0.00 Content Count: 105 Reputation: 67 Joined: 04/05/13 Last Seen: April 25, 2019 Share Posted June 28, 2013 If you're trying to utilize the cash shop window on 2012 clients with rAthena it's likely to fail or result in broken behavior, we don't officially support any 2012 clients for cash shop window functionality at this time. Only 2013 clients have been coded for and tested currently. 1 Quote Link to comment Share on other sites More sharing options...
ZAGALiC Posted June 29, 2013 Group: Members Topic Count: 51 Topics Per Day: 0.01 Content Count: 125 Reputation: 0 Joined: 06/07/13 Last Seen: May 20, 2020 Share Posted June 29, 2013 If you're trying to utilize the cash shop window on 2012 clients with rAthena it's likely to fail or result in broken behavior, we don't officially support any 2012 clients for cash shop window functionality at this time. Only 2013 clients have been coded for and tested currently. What 2013 client should I use? Quote Link to comment Share on other sites More sharing options...
Brynner Posted June 29, 2013 Group: Members Topic Count: 120 Topics Per Day: 0.02 Content Count: 1951 Reputation: 202 Joined: 01/08/12 Last Seen: 26 minutes ago Share Posted June 29, 2013 Hello guys, I've got the same problem here. I've already tried the posted intruction from Brynner and still got the same problem. Nothing happens, when I click the OK Button to purchase some items, I can't seem to buy the item Anyone who could help me with this? to make it work for 2012 clients. you must edit the clif.c and look for 20130320 on line 14501 #if PACKETVER < 20130320 and line 16501 #if PACKETVER >= 20130320 then replace with your client version. #if PACKETVER >= 20120410 recompile and you can now buy on the cash shop. Quote Link to comment Share on other sites More sharing options...
simplemhan Posted June 29, 2013 Group: Members Topic Count: 50 Topics Per Day: 0.01 Content Count: 308 Reputation: 3 Joined: 12/18/11 Last Seen: March 4, 2014 Share Posted June 29, 2013 Why i can't buy this item? screenrAthena009.jpg i think you used item name instead of item id, try to used item id. Quote Link to comment Share on other sites More sharing options...
ZAGALiC Posted June 29, 2013 Group: Members Topic Count: 51 Topics Per Day: 0.01 Content Count: 125 Reputation: 0 Joined: 06/07/13 Last Seen: May 20, 2020 Share Posted June 29, 2013 Hello guys, I've got the same problem here. I've already tried the posted intruction from Brynner and still got the same problem. Nothing happens, when I click the OK Button to purchase some items, I can't seem to buy the item Anyone who could help me with this? to make it work for 2012 clients. you must edit the clif.c and look for 20130320 on line 14501 #if PACKETVER < 20130320 and line 16501 #if PACKETVER >= 20130320 then replace with your client version. #if PACKETVER >= 20120410 recompile and you can now buy on the cash shop. http://rathena.org/board/topic/84196-help-with-cash-shop/ Quote Link to comment Share on other sites More sharing options...
Brynner Posted June 29, 2013 Group: Members Topic Count: 120 Topics Per Day: 0.02 Content Count: 1951 Reputation: 202 Joined: 01/08/12 Last Seen: 26 minutes ago Share Posted June 29, 2013 Hello guys, I've got the same problem here. I've already tried the posted intruction from Brynner and still got the same problem. Nothing happens, when I click the OK Button to purchase some items, I can't seem to buy the item Anyone who could help me with this? to make it work for 2012 clients. you must edit the clif.c and look for 20130320 on line 14501 #if PACKETVER < 20130320 and line 16501 #if PACKETVER >= 20130320 then replace with your client version. #if PACKETVER >= 20120410 recompile and you can now buy on the cash shop. http://rathena.org/board/topic/84196-help-with-cash-shop/ if you did not receive any error message after buying on the cash shop. check your packet_db.txt. this issue will look like this. http://rathena.org/board/tracker/issue-7723-cash-shop-it-not-working-on-latest-revision-using-2012-04-10aragexe/ Quote Link to comment Share on other sites More sharing options...
ZAGALiC Posted June 29, 2013 Group: Members Topic Count: 51 Topics Per Day: 0.01 Content Count: 125 Reputation: 0 Joined: 06/07/13 Last Seen: May 20, 2020 Share Posted June 29, 2013 Hello guys, I've got the same problem here. I've already tried the posted intruction from Brynner and still got the same problem. Nothing happens, when I click the OK Button to purchase some items, I can't seem to buy the item Anyone who could help me with this? to make it work for 2012 clients. you must edit the clif.c and look for 20130320 on line 14501 #if PACKETVER < 20130320 and line 16501 #if PACKETVER >= 20130320 then replace with your client version. #if PACKETVER >= 20120410 recompile and you can now buy on the cash shop. http://rathena.org/board/topic/84196-help-with-cash-shop/ if you did not receive any error message after buying on the cash shop. check your packet_db.txt. this issue will look like this. http://rathena.org/board/tracker/issue-7723-cash-shop-it-not-working-on-latest-revision-using-2012-04-10aragexe/ I've already done every instruction in that thread you gave me, yes there is no errors occuring. What should I do then? Quote Link to comment Share on other sites More sharing options...
Brynner Posted June 29, 2013 Group: Members Topic Count: 120 Topics Per Day: 0.02 Content Count: 1951 Reputation: 202 Joined: 01/08/12 Last Seen: 26 minutes ago Share Posted June 29, 2013 hmmm since all the solution are already posted there but no one works for you?since i can't produce that problem using the latest revision. i don't know how to make it work. Quote Link to comment Share on other sites More sharing options...
ZAGALiC Posted June 29, 2013 Group: Members Topic Count: 51 Topics Per Day: 0.01 Content Count: 125 Reputation: 0 Joined: 06/07/13 Last Seen: May 20, 2020 Share Posted June 29, 2013 hmmm since all the solution are already posted there but no one works for you?since i can't produce that problem using the latest revision. i don't know how to make it work. At last I already fix the problem Thanks alot sir Brynner you helped me alot of times , but there is another problem, same problem as this. http://rathena.org/board/topic/84102-problem-with-cash-shop/ Quote Link to comment Share on other sites More sharing options...
Question
Tonetzkii
Why i can't buy this item?
Link to comment
Share on other sites
29 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.