Jump to content

Emistry

Forum Moderator
  • Posts

    10018
  • Joined

  • Days Won

    408

Everything posted by Emistry

  1. *resetskill; This command takes off all the skill points on the invoking character, so they only have Basic Skill blanked out (lvl 0) left, and returns the points for them to spend again. Nothing else will change but the skills. Quest skills will also reset if 'quest_skill_reset' option is set to Yes in 'battle_athena.conf'. If the 'quest_skill_learn' option is set in there, the points in the quest skills will also count towards the total. Used in reset NPC's (duh!)
  2. you can just simply add some mapuser checking or party member checking before they enter .... refer getmapusers or the trick i show in previous post. nope...i think you closed the npc dialog using the "esc" button ...and not close the npc dialog through the script.
  3. Owh...actually i didnt limit the amount of player can enter the map ... since in the normal woe...group of people will hit the emperium..not only one member ... so in the script they can enter the "instance" as long as their are in party ... and of course you can limit these by checking the party member count ... getpartymember gecharid(1); if( $@partymembercount > 1 ){ mes "Only 1 player can enter.."; close; }
  4. monster .Map$,0,0,"[ Farm Zone ] Resident",-1,80,strnpcinfo(0)+"::OnNormalKill"; monster .Map$,0,0,"[ Farm Zone ] Guardian",-3,5,strnpcinfo(0)+"::OnBossKill"; change the -1 or -3 to ur mob id.
  5. trunk/db/const.txt bStr 13 bAgi 14 bVit 15 bInt 16 bDex 17 bLuk 18
  6. you can try this https://rathena.org/board/index.php?/files/file/2859-%7B?%7D/
  7. since you are using array to store all the item list... you can use this to check.. if( checkweight2( .SWitems,.SWquantities ) ){ // getitem }else{ // overweight. }
  8. make sure the packet you using is compatible to your clients too.. get the updated lub file here http://subversion.assembla.com/svn/ClientSide/Lua_Project/lubs/
  9. perhap you are using incompatible client ... try change clientdate inside the mmo.h or change other hex client ...
  10. you didnt clicked on the scheme that you want to load this sql script .... Error Code: 1046. No database selected Select the default DB to be used by double-clicking its name in the SCHEMAS list in the sidebar.
  11. that is db/refine_bonus.txt i am refering to db/refine_db.txt
  12. Thanks Capuche, for suggesting this script =) i would love to try this but i just need the Upper,Middle,Lower gears only to be refined.. //--- Bitmasks ---- // 1 - Top Headgear // 2 - Armor // 4 - Left Hand // 8 - Right Hand // 16 - Garment // 32 - Shoes // 64 - Left Accessory // 128 - Right Accessory // 256 - Middle Headgear // 512 - Lower Headgear // .....callfunc( "RefineFunc",<itemID>,<Amount>,<BitMasks>,<MinRefine>,<MaxRefine>,<CheckEquip>,<RefineMode>,<Percent> ); // 1. itemID -> Item that will be used during Refine. // 2. Amount -> Amount of Required Items. // 3. BitMask -> Refer to above bitmask table. // 4. MinRefine -> Required Min Refine to use. // 5. MaxRefine -> What is the Max Refine. [ Can Bypass Default Server Max Refine ] // 6. CheckEquip -> Check Equipments is Refineable or not. [ 0 = Disable / 1 = Enable ] // 7. RefineMode -> +1 / Max Refine. [ 0 = +1 Refine / 1 = Max Refine ] // 8. Percent -> Rate of Success to refine current Equipment. edit the bitmask value.. @Anakid should refrain from using @command in npc script if possible..it will generate tons of unecessary @command logs when the server have saved @command logs.
  13. why not just edit here ? trunk/db/re/refine_db.txt
  14. if i recall correctly...only work in 2013 rag client...not ragre..
  15. what is your other suggestion besides using @storeall ask them store the item themselve... example.. add this to your warper. getinventorylist; if( @inventorylist_count ){ mes "Please store all ur items."; close; }
  16. just copy it inside the mob_db.txt inside the pre-re folder.
  17. Script Release > Emistry Script > Refiner
  18. nude; atcommand "@storeall"; not really a suggestion for using @storeall since player can bypass it when their storage is full.
  19. double check ur group.conf configuration or show it here.
  20. use @unloadnpc ... else restart the server after you removed it from the script there.
  21. use notepad++ and search through your npc folder for Magic Gear Master
  22. if( checkweight( 7619,10 ) ) getitem 7619,10;
  23. i believe this is just happened only when you have installed Harmony...
×
×
  • Create New...