Jump to content
  • 0

Cashshop problem


Tonetzkii

Question


  • Group:  Members
  • Topic Count:  47
  • Topics Per Day:  0.01
  • Content Count:  323
  • Reputation:   9
  • Joined:  11/19/11
  • Last Seen:  

Why i can't buy this item?

 

post-389-0-96031100-1366729292_thumb.jpg

Link to comment
Share on other sites

Recommended Posts


  • Group:  Members
  • Topic Count:  26
  • Topics Per Day:  0.01
  • Content Count:  94
  • Reputation:   0
  • Joined:  04/01/12
  • Last Seen:  

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?

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  118
  • Topics Per Day:  0.03
  • Content Count:  1942
  • Reputation:   197
  • Joined:  01/08/12
  • Last Seen:  

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

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  3
  • Topics Per Day:  0.00
  • Content Count:  164
  • Reputation:   12
  • Joined:  01/03/12
  • Last Seen:  

@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 by exneval
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  11
  • Topics Per Day:  0.00
  • Content Count:  196
  • Reputation:   72
  • Joined:  12/12/11
  • Last Seen:  

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
Edited by Napster
  • Upvote 1
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  48
  • Topics Per Day:  0.01
  • Content Count:  1125
  • Reputation:   236
  • Joined:  07/30/12
  • Last Seen:  

Got the same problem. Anyone knows how to fix this?

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  69
  • Topics Per Day:  0.02
  • Content Count:  296
  • Reputation:   2
  • Joined:  04/11/13
  • Last Seen:  

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

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  118
  • Topics Per Day:  0.03
  • Content Count:  1942
  • Reputation:   197
  • Joined:  01/08/12
  • Last Seen:  

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.

 

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  69
  • Topics Per Day:  0.02
  • Content Count:  296
  • Reputation:   2
  • Joined:  04/11/13
  • Last Seen:  

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.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  117
  • Topics Per Day:  0.03
  • Content Count:  312
  • Reputation:   34
  • Joined:  10/15/12
  • Last Seen:  

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

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  118
  • Topics Per Day:  0.03
  • Content Count:  1942
  • Reputation:   197
  • Joined:  01/08/12
  • Last Seen:  

can you post your changes on your clif.c and your packet_db.txt only the packet version that you are using

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  69
  • Topics Per Day:  0.02
  • Content Count:  296
  • Reputation:   2
  • Joined:  04/11/13
  • Last Seen:  

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

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  118
  • Topics Per Day:  0.03
  • Content Count:  1942
  • Reputation:   197
  • Joined:  01/08/12
  • Last Seen:  

 

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. 

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  117
  • Topics Per Day:  0.03
  • Content Count:  312
  • Reputation:   34
  • Joined:  10/15/12
  • Last Seen:  

 

 

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! :D

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  51
  • Topics Per Day:  0.01
  • Content Count:  125
  • Reputation:   0
  • Joined:  06/07/13
  • Last Seen:  

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?

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  50
  • Topics Per Day:  0.01
  • Content Count:  308
  • Reputation:   3
  • Joined:  12/18/11
  • Last Seen:  

try to check ur items also i managed to solve that same problem with u i just check my custom items.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  9
  • Topics Per Day:  0.00
  • Content Count:  105
  • Reputation:   67
  • Joined:  04/05/13
  • Last Seen:  

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.

  • Upvote 1
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  51
  • Topics Per Day:  0.01
  • Content Count:  125
  • Reputation:   0
  • Joined:  06/07/13
  • Last Seen:  

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?

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  118
  • Topics Per Day:  0.03
  • Content Count:  1942
  • Reputation:   197
  • Joined:  01/08/12
  • Last Seen:  

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.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  50
  • Topics Per Day:  0.01
  • Content Count:  308
  • Reputation:   3
  • Joined:  12/18/11
  • Last Seen:  

Why i can't buy this item?

 

attachicon.gifscreenrAthena009.jpg

i think you used item name instead of item id, try to used item id.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  51
  • Topics Per Day:  0.01
  • Content Count:  125
  • Reputation:   0
  • Joined:  06/07/13
  • Last Seen:  

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/

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  118
  • Topics Per Day:  0.03
  • Content Count:  1942
  • Reputation:   197
  • Joined:  01/08/12
  • Last Seen:  

 

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/

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  51
  • Topics Per Day:  0.01
  • Content Count:  125
  • Reputation:   0
  • Joined:  06/07/13
  • Last Seen:  

 

 

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?

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  118
  • Topics Per Day:  0.03
  • Content Count:  1942
  • Reputation:   197
  • Joined:  01/08/12
  • Last Seen:  

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.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  51
  • Topics Per Day:  0.01
  • Content Count:  125
  • Reputation:   0
  • Joined:  06/07/13
  • Last Seen:  

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 :D, but there is another problem, same problem as this.

 

http://rathena.org/board/topic/84102-problem-with-cash-shop/

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...