Jump to content

Emistry

Forum Moderator
  • Posts

    10018
  • Joined

  • Days Won

    409

Everything posted by Emistry

  1. Emistry

    MvP

    you have guys check on the post made by Brian ? take a look in it ?? Super Convex Mirror O.O~
  2. perhap you can spend you time reading on this ? http://rathena.org/board/topic/53320-%E3%80%90-emistry-%C2%A9-2012-%E3%80%91e-scripts-collection/page__st__40__p__71628#entry71628 //--- 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. // Notes : You can Customize it according to whatever way you want. // Different NPCs / Items with Different Settings. // It will consume the items that you defined to Refine the Equipments according to your Settings. //----------- If used this as Item Script ----------- // Example : Red Potion with 100% Refine Rate // 501,Red_Potion,Red Potion,11,50,,70,,,,,0xFFFFFFFF,7,2,,,,,,{ callfunc( "RefineFunc",501,1,63,0,10,1,0,100 ); },{},{} // Change Item Type to 11 and Amount Required to 1 ( Advised ) //----------- If used this as NPC Script ------------ // Example : 90% Success Rate Refiner. // prontera,155,181,5 script Refiner 757,{ // callfunc( "RefineFunc",501,1,63,0,10,1,0,90 ); // }
  3. Check my Refine Function Script Release > Script Collection > Emistry Script > Refine Function
  4. 2434
  5. arent this donpcevent "Start::eventsa"; should be donpcevent "SEvent::eventsa";
  6. 2432
  7. morocc,166,93,5 script SafariTrigger 100,{ if( !getgmlevel() ){ mes "You are Level 0 GM."; close; } menu "[start]",StartStart; StartStart: donpcevent "Start::Onshfnbsnb"; close; }
  8. if( !getgmlevel() ){ mes "You are Level 0 GM."; close; }
  9. double check what you have edit before this.. and...instead of copy and paste the content...i think you should post a screenshot better than this...
  10. 2430
  11. 2428
  12. 2426
  13. 2423
  14. 2420
  15. try add this for your kiel card if( isequippedcnt(4403) > 2 && isequipped(2703) < 2 ) end; else bonus bDelayRate,-30;
  16. well...Level is actually still exist in rAthena... but command setting is not adjust according to Level but Group ID refer this 2 files to help you to get what is the list of available permission and command you can set. https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/doc/permissions.txt https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/doc/atcommands.txt then here....the files for adjust the command and permission for each group https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/conf/groups.conf let say now we take this as example..the Group ID 0...normal player group. id: 0 /* group 0 is the default group for every new account */ name: "Player" level: 0 inherit: ( /*empty list*/ ) commands: { /* no commands by default */ } permissions: { /* without this basic permissions regular players could not trade or party */ can_trade: true can_party: true } as you can see from above... ID = Group ID Name = Name of this Group Inherit = This Group Inherit What other Group Permissions / Commands Command = Available Command for this Group Permission = Permission of this Group let say now you wanna add @go and @autoloot command to players...so you just simply add this line into the command field.. autoloot: true go: true True = Enable False = Disable and now..if you wanna add a new permission to the group...add like this in the permission field... can_trade: true can_party: true and for this log_commands: true just what what it refer....it log the commands used by this group members in sql or any other form you specify..
  17. Emistry

    Fame

    change this if (EnableFame < 1 || Rhero == 1 || Lhero == 1 || Bhero == 1 || Dhero == 1 || Shero == 1) end; into this ? if (EnableFame < 1 || ( !Rhero && !Lhero && !Bhero && !Dhero && !Shero ) ) end;
  18. 2418
  19. 2416
  20. 2414
  21. 2412
  22. try this use the same script..and change the getitem lines.. getitem 7227,( !gettime(4) )?7:gettime(4); getitem 512,( !gettime(4) )?7:gettime(4);
  23. if you want using the prerenewal cast setting.. just comment that line... //#define RENEWAL_CAST
  24. thx for pointing it out... i have updated it and fixed the missing atoi. thank you.
  25. @lilcooldude if i am not mistaken..codebox currently didnt work.. @topic starter.. what do you mean by didnt work..be specify..
×
×
  • Create New...