Jump to content

Emistry

Forum Moderator
  • Posts

    10018
  • Joined

  • Days Won

    408

Everything posted by Emistry

  1. by default....emperium only immune to skill when it's inside the gvg castle...out of the castle...you need to do other custom src mod to support it.
  2. try change close to end
  3. try use this *getstatus <effect type>{,<type>}; Retrieve information about a specific status effect when called. Depending on <type> specified the function will return different information. Possible <type> values: - 0 or undefined: whether the status is active - 1: the val1 of the status - 2: the val2 of the status - 3: the val3 of the status - 4: the val4 of the status - 5: the amount of time in milliseconds that the status has remaining If <type> is not defined or is set to 0, then the script function will either return 1 if the status is active, or 0 if the status is not active. If the status is not active when any of the <type> fields are provided, this script function will always return 0.
  4. Emistry

    NPC

    you mean the waitingroom ?? waitingroom "RFYL",0;
  5. remove or comment this line if (Class == Job_Ninja) setarray .@exp[0],.@j1,70;
  6. make sure you have give the correct setting in your data.ini ...
  7. https://rathena.org/board/index.php?/files/file/2503-%7B?%7D/
  8. switch(select((getequiprefinerycnt(EQI_HEAD_TOP) == 10 )?"":"???? [ ^0000FF"+getequipname(EQI_HEAD_TOP)+"^000000 ]", // Case 1: (getequiprefinerycnt(EQI_ARMOR) == 10 )?"":"??? ??? [ ^0000FF"+getequipname(EQI_ARMOR)+"^000000 ]", // Case 2: (getequiprefinerycnt(EQI_HAND_L) == 10 )?"":"???? ?????? [ ^0000FF"+getequipname(EQI_HAND_L)+"^000000 ]", // Case 3: (getequiprefinerycnt(EQI_HAND_R) == 10)?"":"???? ?????? [ ^0000FF"+getequipname(EQI_HAND_R)+"^000000 ]", // Case 4: (getequiprefinerycnt(EQI_GARMENT) == 10)?"":"?????? [ ^0000FF"+getequipname(EQI_GARMENT)+"^000000 ]", // Case 5: (getequiprefinerycnt(EQI_SHOES) == 10)?"":"???? [ ^0000FF"+getequipname(EQI_SHOES)+"^000000 ]", // Case 6: (getequiprefinerycnt(EQI_ACC_L) == 10)?"":"???? [ ^0000FF"+getequipname(EQI_ACC_L)+"^000000 ]", // Case 7: (getequiprefinerycnt(EQI_ACC_R) == 10)?"":"???? [ ^0000FF"+getequipname(EQI_ACC_R)+"^000000 ]", // Case 8: cant really help you with the dialogs... beside..i got a better version of refiner script.. Script Release > Emistry's Script > Custom Refiner. @Anakid your script have alot of errors...in the part i mentioned above..
  9. Script Release > Euphy Script > All-in-One NPC
  10. OnClock0000: OnClock0007: OnClock0014: OnClock2100: announce "Portal Opened",0; enablenpc "portalname"; sleep 60000; disablenpc "portalname"; end;
  11. remove all these getequipisenableref(.......)
  12. trunk/conf/groups.conf level: 80
  13. find this set Zeny,Zeny-.lastwarpfee; add above if( Zeny < .lastwarpfee ) close; add the same thing for each cases..
  14. INSERT INTO `table` ( `column`,`column`,`column` ) VALUES ( data,data,data ); after you select all the data...then you can try use a loop to repeat the insert process
  15. http://rathena.org/board/topic/77027-disable-assumptio-during-woe/?p=173271
  16. prontera,155,180,5 script Sample 757,{ .@job = select( "Swordman","Mage","Archer","Acolyte","Merchant","Thief" ); .@eac = eaclass( .@job ); setarray .@job,roclass( .@eac|EAJL_2_1|EAJL_UPPER ),roclass( .@eac|EAJL_2_2|EAJL_UPPER ); .@i = select( jobname( .@job[0] ),jobname( .@job[1] ) ) - 1; jobchange .@job[.@i]; BaseLevel = 99; JobLevel = 70; SkillPoint = ( 9 + 49 + 69 ); mes "Done"; close; }
  17. trunk/conf/inter_athena.conf // Level range for sharing within a party party_share_level: 15
  18. something like this ? refer post#5
  19. when the script 1st running ... save the "equipment ID" into a temporary variable...example .@equip_id = getequipid( <equipment slot> ); then....when the time come ... or whenever you want to check it.. if( .@equip_id != getequipid( <equipment slot> ) ){ mes "Dame you changed equipments."; } refer getequipid
  20. https://rathena.org/board/index.php?/files/file/2504-%7B?%7D/
  21. { if( strcharinfo(3) == "prontera" ) { message strcharinfo(0),"Access Denied!"; warp "prontera",155,181; } else { getitem 607,10; } },{},{}
  22. try this? http://pastebin.com/raw.php?i=L5HFEggR
  23. do not adjust these.. trunk/conf/battle/drops.conf // Item drop rates (Note 2) item_drop_common_min: 1 item_drop_common_max: 10000 item_drop_heal_min: 1 item_drop_heal_max: 10000 item_drop_use_min: 1 item_drop_use_max: 10000 item_drop_equip_min: 1 item_drop_equip_max: 10000 item_drop_card_min: 1 item_drop_card_max: 10000 item_drop_mvp_min: 1 item_drop_mvp_max: 10000 item_drop_add_min: 1 item_drop_add_max: 10000 item_drop_treasure_min: 1 item_drop_treasure_max: 10000 these defined the minimum and maximum rate of item ..
  24. @All all solution isnt working ... nowarp mapflag isnt used to prevent logout.... OnPCLogoutEvent only get triggered when the players logout already ... there is no actual way to prevent logout issue....player still can logout with the ultimate "ALT + F4" ...just that the characters might still remain inside the games for awhile before it disappear from your sight.
×
×
  • Create New...