

simplexjay2
Members-
Posts
224 -
Joined
-
Last visited
-
Days Won
1
Content Type
Profiles
Forums
Downloads
Jobs Available
Server Database
Third-Party Services
Top Guides
Store
Crowdfunding
Everything posted by simplexjay2
-
Same error
-
[Game] Casino Machine jackpot
simplexjay2 replied to Ken Mist's topic in Game, Event, Quest Script Releases
Can i request than using zeny to buy token and return token use cash points -
Can i request pvp ladder with dota announce and pub how many player's inside the pvp room and the best part if some player get top 5 they will have an aura i use the free release of @aura_by_zephyrus and if they gone in top 5 it will automatically remove
-
Nice work how to change the bet zeny system to item
-
PK PvP Statistics Near Finishing *help needed*
simplexjay2 replied to tonelli's question in Scripting Support
[Debug]: at c:\users\admin\desktop\rathena\src\map\script.c:15615 - SELECT `char _reg_num_db`.`value`,`char`.`name` FROM `char` INNER JOIN `char_reg_num_db` ON ` char_reg_num_db`.`char_id`=`char`.`char_id` WHERE `char_reg_num_db`.`key`='woeki llspree' ORDER BY `char_reg_num_db`.`value` DESC LIMIT 1 [Debug]: Source (NPC): PvP Statistician at prontera (171,223) -
It should Update On latest rev
-
how to edit not affect EDP Sacrifice in emperium
-
ill give u idea how to be it work for patching make 2 grf the 1st grf contain's your sprite and texture and pallet and the 2nd one contains the idum etc that has low byte so if u patch u always use the 2nd one than the main one patching it with same name of grf and low byte's sorry poor in english
-
I'm starting to help someone that not have been fix the cash shop in 2012-04-10araexe after i search looking to fix it some src are release but it failed... but thank's for those src give's me idea to fix the cash shop problem now here's the quick fix.. In: \src\map\clif.c Find: /// CASH/POINT SHOP Around line 15902 till before /// Adoption System Around line 15902 change with this /// CASH/POINT SHOP /// void clif_cashshop_open( struct map_session_data* sd ){ WFIFOHEAD( sd->fd, 10 ); WFIFOW( sd->fd, 0 ) = 0x845; WFIFOL( sd->fd, 2 ) = sd->cashPoints; WFIFOL( sd->fd, 6 ) = sd->kafraPoints; WFIFOSET( sd->fd, 10 ); } void clif_parse_cashshop_open_request( int fd, struct map_session_data* sd ){ sd->npc_shopid = -1; // Set npc_shopid when using cash shop from "cash shop" button [Aelys|Susu] bugreport:96 clif_cashshop_open( sd ); } void clif_parse_cashshop_close( int fd, struct map_session_data* sd ){ sd->npc_shopid = 0; // Reset npc_shopid when using cash shop from "cash shop" button [Aelys|Susu] bugreport:96 // No need to do anything here } //0846 <tabid>.W (CZ_REQ_SE_CASH_TAB_CODE)) //08c0 <len>.W <openIdentity>.L <itemcount>.W (ZC_ACK_SE_CASH_ITEM_LIST2) void clif_parse_CashShopReqTab(int fd, struct map_session_data *sd) { short tab = RFIFOW(fd, packet_db[sd->packet_ver][RFIFOW(fd,0)].pos[0]); int j; if( tab < 0 || tab > CASHSHOP_TAB_SEARCH ) return; WFIFOHEAD(fd, 10 + ( cash_shop_items[tab].count * 6 ) ); WFIFOW(fd, 0) = 0x8c0; WFIFOW(fd, 2) = 10 + ( cash_shop_items[tab].count * 6 ); WFIFOL(fd, 4) = tab; WFIFOW(fd, 8) = cash_shop_items[tab].count; for( j = 0; j < cash_shop_items[tab].count; j++ ) { struct item_data *id = itemdb_search(cash_shop_items[tab].item[j]->nameid); WFIFOW(fd, 10 + ( 6 * j ) ) = (id->view_id) ? id->view_id : cash_shop_items[tab].item[j]->nameid; WFIFOL(fd, 12 + ( 6 * j ) ) = cash_shop_items[tab].item[j]->price; } WFIFOSET(fd, 10 + ( cash_shop_items[tab].count * 6 )); } //08ca <len>.W <itemcount> W <tabcode>.W (ZC_ACK_SCHEDULER_CASHITEM) void clif_cashshop_list( int fd ){ int tab; for( tab = CASHSHOP_TAB_NEW; tab < CASHSHOP_TAB_SEARCH; tab++ ){ int length = 8 + cash_shop_items[tab].count * 6; int i, offset; WFIFOHEAD( fd, length ); WFIFOW( fd, 0 ) = 0x8ca; WFIFOW( fd, 2 ) = length; WFIFOW( fd, 4 ) = cash_shop_items[tab].count; WFIFOW( fd, 6 ) = tab; for( i = 0, offset = 8; i < cash_shop_items[tab].count; i++, offset += 6 ){ struct item_data *id = itemdb_search(cash_shop_items[tab].item[i]->nameid); WFIFOW( fd, offset ) = (id->view_id) ? id->view_id : cash_shop_items[tab].item[i]->nameid; WFIFOL( fd, offset + 2 ) = cash_shop_items[tab].item[i]->price; } WFIFOSET( fd, length ); } } void clif_parse_cashshop_list_request( int fd, struct map_session_data* sd ){ if( !sd->status.cashshop_sent ) { clif_cashshop_list( fd ); sd->status.cashshop_sent = true; } } /// List of items offered in a cash shop (ZC_PC_CASH_POINT_ITEMLIST). /// 0287 <packet len>.W <cash point>.L { <sell price>.L <discount price>.L <item type>.B <name id>.W }* /// 0287 <packet len>.W <cash point>.L <kafra point>.L { <sell price>.L <discount price>.L <item type>.B <name id>.W }* (PACKETVER >= 20070711) void clif_cashshop_show(struct map_session_data *sd, struct npc_data *nd) { int fd,i; #if PACKETVER < 20070711 const int offset = 8; #else const int offset = 12; #endif nullpo_retv(sd); nullpo_retv(nd); fd = sd->fd; sd->npc_shopid = nd->bl.id; WFIFOHEAD(fd,offset+nd->u.shop.count*11); WFIFOW(fd,0) = 0x287; WFIFOW(fd,2) = offset+nd->u.shop.count*11; WFIFOL(fd,4) = sd->cashPoints; // Cash Points #if PACKETVER >= 20070711 WFIFOL(fd,8) = sd->kafraPoints; // Kafra Points #endif for( i = 0; i < nd->u.shop.count; i++ ) { struct item_data* id = itemdb_search(nd->u.shop.shop_item[i].nameid); WFIFOL(fd,offset+0+i*11) = nd->u.shop.shop_item[i].value; WFIFOL(fd,offset+4+i*11) = nd->u.shop.shop_item[i].value; // Discount Price WFIFOB(fd,offset+8+i*11) = itemtype(id->nameid); WFIFOW(fd,offset+9+i*11) = ( id->view_id > 0 ) ? id->view_id : id->nameid; } WFIFOSET(fd,WFIFOW(fd,2)); } /// Cashshop Buy Ack (ZC_PC_CASH_POINT_UPDATE). /// 0289 <cash point>.L <error>.W /// 0289 <cash point>.L <kafra point>.L <error>.W (PACKETVER >= 20070711) /// error: /// 0 = The deal has successfully completed. (ERROR_TYPE_NONE) /// 1 = The Purchase has failed because the NPC does not exist. (ERROR_TYPE_NPC) /// 2 = The Purchase has failed because the Kafra Shop System is not working correctly. (ERROR_TYPE_SYSTEM) /// 3 = You are over your Weight Limit. (ERROR_TYPE_INVENTORY_WEIGHT) /// 4 = You cannot purchase items while you are in a trade. (ERROR_TYPE_EXCHANGE) /// 5 = The Purchase has failed because the Item Information was incorrect. (ERROR_TYPE_ITEM_ID) /// 6 = You do not have enough Kafra Credit Points. (ERROR_TYPE_MONEY) /// 7 = You can purchase up to 10 items. /// 8 = Some items could not be purchased. void clif_cashshop_ack(struct map_session_data* sd, int error) { int fd = sd->fd; WFIFOHEAD(fd, packet_len(0x289)); WFIFOW(fd,0) = 0x289; WFIFOL(fd,2) = sd->cashPoints; #if PACKETVER < 20070711 WFIFOW(fd,6) = TOW(error); #else WFIFOL(fd,6) = sd->kafraPoints; WFIFOW(fd,10) = TOW(error); #endif WFIFOSET(fd, packet_len(0x289)); } #if PACKETVER >= 20120410 void clif_parse_cashshop_buy( int fd, struct map_session_data *sd ){ struct s_packet_db* info = &packet_db[sd->packet_ver][RFIFOW(fd,0)]; uint16 length = RFIFOW( fd, info->pos[0] ); uint16 count = RFIFOW( fd, info->pos[1] ); if( length < 10 || length < ( 10 + count * 6 ) ){ return; } cashshop_buylist( sd, RFIFOL( fd, info->pos[2] ), count, (uint16 *)RFIFOP( fd, info->pos[3] ) ); } #endif void clif_cashshop_result( struct map_session_data *sd, uint16 item_id, uint16 result ){ WFIFOHEAD( sd->fd, 16 ); WFIFOW( sd->fd, 0 ) = 0x849; WFIFOL( sd->fd, 2 ) = item_id; WFIFOW( sd->fd, 6 ) = result; WFIFOL( sd->fd, 8 ) = sd->cashPoints; WFIFOL( sd->fd, 12 ) = sd->kafraPoints; WFIFOSET( sd->fd, 16 ); } // TODO: find a more accurate date for this - Brynner #if PACKETVER < 20120410 /// 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) /// 0848 <packet len>.W <count>.W <packet len>.W <kafra points>.L <count>.W { <amount>.W <name id>.W <tab>.W }.6B*count (PACKETVER >= 20130000) void clif_parse_cashshop_buy(int fd, struct map_session_data *sd){ int fail = 0; struct s_packet_db* info; int cmd = RFIFOW(fd,0); nullpo_retv(sd); info = &packet_db[sd->packet_ver][cmd]; if( sd->state.trading || !sd->npc_shopid ) fail = 1; else { #if PACKETVER < 20101116 short nameid = RFIFOW(fd,info->pos[0]); short amount = RFIFOW(fd,info->pos[1]); int points = RFIFOL(fd,info->pos[2]); fail = npc_cashshop_buy(sd, nameid, amount, points); clif_cashshop_ack(sd,fail); #else int s_itl = (cmd==0x848)?10:4; //item _list size (depend on cmd even for 2013+) int len = RFIFOW(fd,info->pos[0]); int points = RFIFOL(fd,info->pos[1]); int count = RFIFOW(fd,info->pos[2]); unsigned short* item_list = (unsigned short*)RFIFOP(fd,info->pos[3]); if( len < 10 || len != 10 + count * s_itl){ ShowWarning("Player %u sent incorrect cash shop buy packet (len %u:%u)!\n", sd->status.char_id, len, 10 + count * s_itl); return; } if(cmd==0x848){ cashshop_buylist( sd, points, count, item_list); } else { fail = npc_cashshop_buylist(sd,points,count,item_list); } #endif } clif_cashshop_ack(sd,fail); } #endif /// Adoption System And use this Packet 2012-04-10 //2012-04-10aRagexeRE packet_ver: 30 0x01FD,15,repairitem,2 0x089C,26,friendslistadd,2 0x0885,5,hommenu,2:4 0x0961,36,storagepassword,0 0x0288,-1,cashshopbuy,4:8 0x091C,26,partyinvite2,2 0x094B,19,wanttoconnection,2:6:10:14:18 0x0369,7,actionrequest,2:6 0x083C,10,useskilltoid,2:4:6 0x0439,8,useitem,2:4 0x0945,-1,itemlistwindowselected,2:4:8 0x0815,-1,reqopenbuyingstore,2:4:8:9:89 0x0817,2,reqclosebuyingstore,0 0x0360,6,reqclickbuyingstore,2 0x0811,-1,reqtradebuyingstore,2:4:8:12 0x0819,-1,searchstoreinfo,2:4:5:9:13:14:15 0x0835,2,searchstoreinfonextpage,0 0x0838,12,searchstoreinfolistitemclick,2:6:10 0x0437,5,walktoxy,2 0x0886,6,ticksend,2 0x0871,5,changedir,2:4 0x0938,6,takeitem,2 0x0891,6,dropitem,2:4 0x086C,8,movetokafra,2:4 0x08A6,8,movefromkafra,2:4 0x0438,10,useskilltopos,2:4:6:8 0x091D,18,bookingregreq,2:4:6 0x0366,90,useskilltoposinfo,2:4:6:8:10 0x0889,6,getcharnamerequest,2 0x0884,6,solvecharname,2 0x08E5,41,bookingregreq,2:4 //Added to prevent disconnections 0x08E6,4 0x08E7,10,bookingsearchreq,2 0x08E8,-1 0x08E9,2,bookingdelreq,2 0x08EA,4 0x08EB,39,bookingupdatereq,2 0x08EC,73 0x08ED,43 0x08EE,6 0x08EF,6,bookingignorereq,2 0x08F0,6 0x08F1,6,bookingjoinpartyreq,2 0x08F2,36 0x08F3,-1 0x08F4,6 0x08F5,-1,bookingsummonmember,2:4 0x08F6,22 0x08F7,3 0x08F8,7 0x08F9,6 0x08FA,6 0x08FB,6,bookingcanceljoinparty,2 0x0907,5,moveitem,2:4 0x0908,5 0x08D7,28,battlegroundreg,2:4 //Added to prevent disconnections 0x08CF,10 //Amulet spirits 0x0977,14 //Monster HP Bar 0x0916,26,guildinvite2,2 0x0844,2,cashshopopen,0 0x084a,2,cashshopclose,0 0x08c9,4,cashshopitemlist,0 0x0848,-1,cashshopbuy,2:4:6:10
-
Some one Please Help Me for this 2421# A pair of shoes worn by Valkyries, the battle maidens of the god Odin. • Invulnerable to '^880000Break^000000' in battle. • +5% Movement Speed • +100% Resist against '^880000Sleep^000000' [^008800Mage, Archer, Acolyte, Sith or Ninja Class^000000] • +1% MAX HP * ^000088(Base Lvl/10)^000000 [^008800Swordman, Merchant, Thief Class, Jedi or Gunslinger Class^000000] • +1% MAX SP * ^005500(Job Lvl/10)^000000 [^000088+ Valkyrie Helm & Valkyrie's Armor & Valkyrie's Manteau & Valkyrie's Shoes Equip Set^000000] ^ffffff_^000000 Class :^777777 Footgear^000000 Defense :^777777 4^000000 Weight :^777777 50^000000 Applicable Job :^777777 Every Job^000000 Item modified for : ^777777CrazyRO^000000 # 2524# A manteau that is worn by Valkyries, Odin's battle maidens. Unreal Potential is unleashed when this garment is refined. • Invulnerable to '^880000Break^000000' in battle. [^008800Mage, Archer, Thief, or Ninja Class^000000] • +5 Perfect Dodge [^880088Bonus^000000] • +3 Perfect Dodge per ^885500(Refine Rate)^000000 [^008800Swordman, Merchant, Acolyte, or Gunslinger Class^000000] • +5% DMG Reflect against Short Range [^880088Bonus^000000] • +3% DMG Reflect per ^885500(Refine Rate)^000000 [^000088+ Valkyrie Helm & Valkyrie's Armor & Valkyrie's Manteau & Valkyrie's Shoes Equip Set^000000] ^ffffff_^000000 Class :^777777 Garment^000000 Defense :^777777 3^000000 Weight :^777777 50^000000 Applicable Job :^777777 Every Job^000000 Item modified for : ^777777CrazyRO^000000 2115# A shield used by Gna, the messenger of Freyja, when she served as a Valkyrie. • Invulnerable to '^880000Break^000000' in battle. • +5 MDEF • +20% Resist against ^0000FFWater^000000, ^FF0000Fire^000000, ^662266Shadow^000000 and ^777777Undead^000000 Property. • +100% Resist against '^880000Stone Curse^000000' [^000088+ Odin's Blessing & Frigg's Circlet Combo^000000] • Additional DEF + 2 • MDEF + 20 ^ffffff_^000000 Class :^777777 Shield^000000 Defense :^777777 3^000000 Weight :^777777 50^000000 Required Level :^777777 65^000000 Applicable Job :^777777 Every Job^000000 Item modified for : ^777777CrazyRO^000000 2357# A glorious armor worn by Valkyries, the battle maidens of the god Odin. • Invulnerable to '^880000Break^000000' in battle. • +1 ALL STATS • +100% Resist against '^880000Freeze^000000' [^008800Mage, Archer, Acolyte, Sith or Ninja Class^000000] • +50% Resist against '^880000Silence^000000' [^008800Swordman, Merchant, Thief, Jedi or Gunslinger Class^000000] • +50% Resist against '^880000Stun^000000' [^000088+ Valkyrie Helm & Valkyrie's Armor & Valkyrie's Manteau & Valkyrie's Shoes Equip Set^000000] ^ffffff_^000000 Class :^777777 Armor^000000 Defense :^777777 6^000000 Weight :^777777 280^000000 Applicable Job :^777777 Every Job^000000 Item modified for : ^777777CrazyRO^000000
-
Update The Clif.c Please NVM already Fix 2012-04-10aragexe cashshop....
-
how to make it autoget
-
Bump
-
as a request it will have random pub and who 1st enter the pub and type the same pubname win
-
PLease can some one make me when Login Group id 0 = custom aura 1 Group id 1 = custom aura 2 and so on.......
-
It's Working in Latest Svn 17704
-
just want to know how to make use of skill just group id 1 as super player in some commands just like this src but it's by on level It's Emistry's Src if( sd->status.base_level < 200 ){ clif_displaymessage(sd->fd,"Need level 200 to use."); return 0; }
-
'flag' at Shop to disable Discount & Overcharge
simplexjay2 replied to Cydh's topic in Source Releases
Svn 17704 erro Error 1 error C2065: 'nameid2' : undeclared identifier c:\users\admin\desktop\rathena\src\map\npc.c 2462 1 map-server_sql -
Not working svn 17704
-
Extended Vending System [1.9] cleanup & fix
simplexjay2 replied to Napster's topic in Source Releases
Can this be use in 17704 N if i apply patch there's a red list that cant be enter and manually put cant find where do i need to insert -
Can i Request 2013-08-07 Read Data 1st and Grf with no restore login
simplexjay2 replied to simplexjay2's question in Client Requests
what i mean is this http://rathena.org/board/topic/82726-2013-ragexe-and-diff-up-to-date-2013-08-07/ im working on it but im always failed