Jump to content

Emistry

Forum Moderator
  • Posts

    10018
  • Joined

  • Days Won

    408

Everything posted by Emistry

  1. yup me.......beside...alot of forum icon are unviewable due to the Cloudflare ? i though it was just because of my slow internet connection....but now it look like i am not the only one here haha~ Sample Image : here is my ping ~
  2. OnClock0000: OnClock0600: OnClock1200: OnClock1800:
  3. change for(set @i,0; @i < getarraysize(@bought_nameid); set @i,@i+1) { getitem @bought_nameid[@i],@bought_quantity[@i]; } into this for(set @i,0; @i < getarraysize(@bought_nameid); set @i,@i+1) { getitem @bought_nameid[@i],@bought_quantity[@i]; announce "[ "+strcharinfo(0)+" ] has brought "+@bought_quantity[@i]+" x "+getitemname( @bought_nameid[@i] ),0; } Aw....slower than Docubo ~
  4. My Refine Function can do this. Script Release > Script Collection > Emistry Script > Refine Function
  5. you loaded the script twice ? or perhap there is already 1 npc that named "pvp_sound" before.. just rename the "pvp_sound" to other name.. and.. map "pvp_n_8-10-" doesnt exist in RO ...
  6. nor sure the limit...but 10 or above..i think is already enough for you.... to disable other function ? dunno..just check your NPC folder.. search the entire folder.. or....remove the 1 currently overwriting it. function [WoEToggler] (npc/custom/iRO/WoE.txt:543)
  7. // .....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. + how can i set the refine +1 to my desired?.. + how can i set if my itemID is +8 it will go to my desired refine? + how can i make it that if my item is already +8 it will add the itemID refined desired? edit the min and max refine number.
  8. lol ? isnt this the same like what my script can do ?
  9. like i mentioned above...my NPC doesnt refine according to your "desired" number of refine.. it only refine either +1 or refine till Max....
  10. how you determine your Guild of the Month ?? how you set it ? through GM ? or any auto script ? or what else ?
  11. my script can be use either in NPCs or Items.... Example : //----------- 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 ); // }
  12. the 1st one.... recompile your server with higher value of event queue https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/src/map/map.h #define MAX_EVENTQUEUE 2 the 2nd one...it is just a "warning" message to show you the same function has been reloaded before..and it is now overwriting the previous function.
  13. for max refine / single refine ..just change the refine mode. // 7. RefineMode -> +1 / Max Refine. [ 0 = +1 Refine / 1 = Max Refine ] but i didnt have multiple refine which allow you to refine multiple times on the same equipment. but it still can be achieved by edit the settings of max refine and with different items....
  14. you can try this http://upaste.me/657c37123fcc206
  15. try add this in the NPC OnPCLoginEvent: if( ismounting() && !countitem( 12622 ) ){ setmounting; dispbottom "Mount has been Removed."; } end;
×
×
  • Create New...