Jump to content

Emistry

Forum Moderator
  • Posts

    10018
  • Joined

  • Days Won

    408

Everything posted by Emistry

  1. inside trunk/src/map/pc.h unsigned int canuseitem_tick; unsigned int request_delay_tick; <------ ADD THIS inside trunk/src/map/atcommand.c @request if( DIFF_TICK( sd->request_delay_tick,gettick() ) > 0 ){ clif_displaymessage(fd,"There is a 3 minutes delay in using @request command"); return 0; }else{ sd->request_delay_tick = gettick() + 180000; }
  2. i dont think this script suppose to do using the database part....it should be adjust in ur refiner script...since it's an announcement when your characters success to refine a +8 and above equipments.... find the successrefitem and add below.. .@refine_count = getequiprefinerycnt(<equipment slot>); if( .@refine_count >= 8 ){ announce strcharinfo(0)+" refined a "+.@refine_count+" "+getequipname(<equipment slot>),0; }
  3. attach the event using Permanent_Monster_Spawn or monster or areamonster OnNPCKillEvent: if( killedrid == mob_id ) announce strcharinfo(0)+" of "+strcharinfo(2)+" slained "+getmonsterinfo( killedrid,MOB_NAME )+" at "+strcharinfo(3),bc_all,0xFF0000"; end; there are few way to attach the event too if you dont want to use OnNPCKillEvent...
  4. Emistry

    I need help

    it's remove the Renewal Cast time only..not removing skills..
  5. Emistry

    I need help

    trunk/src/config/renewal.h /// renewal cast time /// (disable by commenting the line) /// /// leave this line to enable renewal casting time algorithms /// cast time is decreased by DEX * 2 + INT while 20% of the cast time is not reduced by stats. /// example: /// on a skill whos cast time is 10s, only 8s may be reduced. the other 2s are part of a /// "fixed cast time" which can only be reduced by specialist items and skills #define RENEWAL_CAST disable this..
  6. menu "Warp Terakhir ["+warpmap$+"]",lastwarp,"Kota",town,"Dungeons",dungeon,"Fields",field,"Mall",wdonation;
  7. getpartymember $@TeamID2,2; for( set .@i,0; .@i < $@partymembercount; set .@i,.@i + 1 ) getitem 512,100,$@partymemberaid[.@i]; end;
  8. change mes "[ "+( .@i + 1 )+". ] "+.@Name$[.@i]+" - "+.@Count[.@i]+" Points"; to mes "[ "+( .@i + 1 )+". ] "+( ( .@Count[.@i] >= 50 )?"MvP Killer":"" )+" "+.@Name$[.@i]+" - "+.@Count[.@i]+" Points";
  9. i dont think it's the problem from the script...it's more like the clientside issue..i guess.
  10. item_rate_card: 10000 item_rate_card_boss: 1000 item_drop_card_min: 1 item_drop_card_max: 100000 100 = 1x 1000 = 10x 10000 = 100x
  11. @TS please read the rules.. http://rathena.org/board/forum-33/announcement-20-new-source-releases-rules/ Please edit your post as soon as possible....
  12. attachrid( getcharid( 3,.@Name$ ) ); set #EVENTPOINTS,#EVENTPOINTS + .@Points; dispbottom "Point : "+#EVENTPOINTS;
  13. just edit the langtype...no other settings are required to change.. the langtype isnt limited to only 0 or 1 ....there are more than these.. if i am not mistaken..should be around 0 ~ 14
  14. http://eathena.ws/forum/topic/40-euphys-quest-shop/
  15. just change the langtype
  16. this issue for rAthena..not eAthena...
  17. OnAgitStart: hideoffnpc "npcname"; end; OnAgitEnd: hideonnpc "npcname"; end; refer hideonnpc , hideoffnpc , OnAgitStart , OnAgitEnd
  18. http://rathena.org/board/topic/72005-sql-error-20m-hp/?p=143705
  19. if you want..you can try this..trunk/npc/custom/events/disguise.txt most of the disguise event out there doesnt have a full list / updated list for non-exist monster...and your server will simply throw you an error for getting informations on non-exist monster ... you can either add a check for non-exist monster ... or add a dummies monster in ur mob_db.txt ..
  20. try this - script Sample -1,{ OnPCLoginEvent: for( .@i = 13; .@i <= 18; .@i++ ) if( readparam( .@i ) >= 120 ) .@over_stat++; if( .@over_stat > 2 ){ dispbottom "You have more than 2 over stats"; // do whatever you want here. } end; }
  21. try this. http://pastebin.com/raw.php?i=JLRNg6z4 make sure you run this query first.... ALTER TABLE `guild` ADD COLUMN `storage_password` VARCHAR(32) NULL DEFAULT '' AFTER `emblem_data` ;
  22. https://rathena.org/board/index.php?/files/file/2597-%7B?%7D/ you can simply create your own shop using this.
×
×
  • Create New...