Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 04/26/13 in all areas

  1. E - Script Collection Last Update : September 10, 2013 Refine Function SQL Mission Board Monster Marching Vendor Control Advanced Stylist Coin Exchanger Doppelganger Race Of The Day Limited Items Multi Currency Shop Random News GM Online List Link Broken E-Inquiry DotA Runes Flower Counting Game Class Restriction Chain Quest Build Manager Misc Scripts : Freebies Script Card Trader Gold Room [ Pick Gold ] Gold Room [ Guild Tax ] Map Restriction [ GM Based ] Daily Reward Monthly Reward Monster Spawner Monster Summoner with Last Summoned Display Players Stats & Equipments 3rd Job Item Giver Exchanger [ Cashpoint to Coins ] Exchanger [ Poring Coin - Zeny ] Exchanger [ Points to Tickets ] Exchanger [ Item to Item ] Exchanger [ Item to Item ] Exchanger [ Multi Item to 1 Item ] Party Match Auto Ban Over Stats Users Soul Link Buff Kill Players gain Cash Points Party Members All Get Items [ Snippet ] Message Board Stalker Class Skill Reproduce NPC Multiple Selection Quest [ Template ] In-Game Item Rewarder In-Game Points Rewarder Invasion Event Custom Item Rate Status Point Seller [ Snippet ] Anti Bot Security Script Anti Bot Script [ Code / Question ] Item Combo Restriction [ LHZ Card ] Drop Item Upon Death PVP Switcher + Announcer [ Guild Master ] Rotating Waitingroom Messages +10 Refiner [ Specific Items ] Random Rate Item Exchanger MVP Invasion Premium Users [ Boost Rates ] Display Cutin Image upon Login Custom Randomed Box Items Kick GM during WOE Custom Crafting NPC Restrict Same IP [ Certain Map ] Coloured Items Exchanger Guild Master Changer Party Team PK Match Gambling Game IRC Channel Crafting NPC Guild Storage Restriction Stage Game [ Version 4 ] Monster Wiki Event [ Version 3 ] Special Thank you for my Tutor : Notes : I am a bit lazy to write all those Script Descriptions, i do believe that all of you able to get how this script works. Anyway, i will still doing my best to write the Updated Changelog or informations about the script as detail as possible. All the Scripts above are uploaded to Pastebin . Abide the Following Rule : Scripts Error / Not Working , you have to Explain it in Details. ( Add in Images / Modified Scripts ) Do not SPAM / BUMP in my Topic. Do not ask for Support stuffs for other Scripts in this Topic. Link Down , then drop [ @Emistry ] a message. I Reserved the Right for NOT Answering your Posts if you did not abide my Topic's Rules. Keep This In Your Mind : All the Scripts i distribute here are NOT FOR COMMERCIAL USES . DO NOT remove my Credits if you are using part of the scripts to modify your own. DO NOT re-release the scripts in any form / way. If you ♥ these Scripts , Click on to Vote this Topic up. Or you may also click on at above the Topic
    2 points
  2. Update for Bahasa Indonesia, follow-up r17296
    2 points
  3. update for Bahasa Indonesia until last svn17288
    2 points
  4. Spanish translation updated (r17285) https://drive.google.com/?tab=mo&authuser=0#folders/0B2UkVqklEED8Tkh5RmVqejhKc3c
    2 points
  5. Thanks to everyone for your continued support! All translations posted thus far have been updated in the SVN. Files still needed: CHN, POR, RUS ~ Channel System, part II (1436-1476). FRN, SPN ~ Revisions to Channel System, part II (changes). GRM, MAL @Lilith: Unfortunately no one from the Dev Team has Russian installed, nor do we know how to work with it. x_x
    1 point
  6. It does not matter how you upgrade your weapon when using this call function method, since it checks for changes when item is equipped.
    1 point
  7. Update translation follow up r17284 and r17285 for @channel system http://pastebin.com/pbTCRamh
    1 point
  8. Try this - EDIT : please take the last script - Put your setting at the end of the script.
    1 point
  9. You mean to change the appearence of the player in novice ? If so, use changebase :
    1 point
  10. -> The mode of your emp must be type boss if you don't want the player can see the hp bar. -> Remove the semi-colon at the end of the line. -> I think you miss some columns : take a look at the mob_db typo.
    1 point
  11. you download and unzip the folder for your ragnarok http://www.4shared.com/rar/SAeyhQ9S/System.html?
    1 point
  12. I added a config section for a reason, please read it. set .Quests,4; // Number of subquests per mission (increases rewards).
    1 point
  13. 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
    1 point
  14. >> #23 fixed http://pastebin.com/t5j0Q933
    1 point
  15. A link to the update map_msg_frn with msg 451 translated : http://pastebin.com/pbTCRamh
    1 point
×
×
  • Create New...