Jump to content

Emistry

Forum Moderator
  • Posts

    10018
  • Joined

  • Days Won

    408

Everything posted by Emistry

  1. what is ur script problems ? you are looking for token NPC or dice npc..? request for both of the script ? fix the script or what ?
  2. since i dunno what you wanna do with it..how you set it in ur map..or how you setup the script... just some minor example for you to reference.. http://pastebin.com/raw.php?i=BT35KdKq the block part is the wall..
  3. it's better to add a deltimer to remove any current attached timer to that label.. deltimer "Arena Master::OnTimeout"; addtimer 300000,"Arena Master::OnTimeout"; otherwise the the player could have attached multiple addtimer and run separately...
  4. i think it would be each stats immune to specific status... like VIT immune STUN INT reduce FROST duration and etc...
  5. disable the renewal features... or remove or disable these. trunk/src/map/pc.c #ifdef RENEWAL if( sd->sc.data[SC_EXTREMITYFIST2] ) sp = 0; #endif
  6. Emistry

    Poo Dog

    some minor fix.. http://pastebin.com/raw.php?i=mXn0PGPJ but still..both script work just fine ~
  7. Emistry

    Poo Dog

    swt ..... getitemname ..... not geitemname
  8. just edit the mob_db.txt .... in renewal the emperium has been changed to only receive 1 damage...
  9. Emistry

    Poo Dog

    isnt that the script i posted above allow you to set what item to drop by the NPC automatically ? just with a range of 1 minutes..
  10. change close to end
  11. Emistry

    Poo Dog

    like this ? http://pastebin.com/raw.php?i=RuA3ZZft
  12. Emistry

    Font Size

    the announce come with a font size parameter.. *announce "<text>",<flag>{,<fontColor>{,<fontType>{,<fontSize>{,<fontAlign>{,<fontY>}}}}}; but this doesnt work in new clients....only work in older client..like 2010 ~
  13. if you are looking for pre-renewal data folder.. i think the best option you got here is using the old data folder... http://svn.games-service.net/ http://eathena.ws/board/index.php?showtopic=65431 @iraciz you cant blame much on this... i am sure it's not easy to edit that much of items...and keep check line by line for missing contents.. if the contents is missing / wrong...then you can just simply give him a hand and help him correct it. we dont have much ppl that really dealing with updated contents for data folder...or manage it.
  14. you mean display the announce with red color ? or what ? or something like this ? https://rathena.org/board/index.php?/files/file/2502-%7B?%7D/
  15. edit at the database to enable it... else...remove the checking of item is refineable or not inside ur script.
  16. tried here? trunk/db/abra_db.txt
  17. @autoloot and @alootid are different command....both work differnt... @autoloot - loot ALL item based on drop rate @alootid - loot SPECIFIC item based on drop rate
  18. menu "Russian Roulette",L_russ;
  19. you mean these setting ? trunk/conf/battle/status.conf // Adjustment for the natural rate of resistance from status changes. // If 50, status defense is halved, and you need twice as much stats to block // them (eg: 200 vit to completely block stun) pc_status_def_rate: 100
  20. if ( pc_get_group_level(sd) >= 1 && pc_get_group_level(sd) < 99 ){
  21. getpartymember getcharid(1),2; for( .@i = 0; .@i < $@partymembercount; .@i++ ) getitem 607,1,$@partymemberaid[.@i]; end;
  22. @autoloot / @autoloo 100
  23. OnNPCKillEvent: if( killedrid == 2200 || killedrid == 2201 ){ getitem 607,1; getitem 7539,1; } end;
  24. /*========================================== * Check if player can drop an item *------------------------------------------*/ int pc_candrop(struct map_session_data *sd, struct item *item) { if( item && item->expire_time ) return 0; if( !pc_can_give_items(sd) ) //check if this GM level can drop items return 0; if ( pc_get_group_level(sd) == 50 ){ // your group you want to disable clif_displaymessage (sd->fd, msg_txt(426)); return 0; } return (itemdb_isdropable(item, pc_get_group_level(sd))); } you have to put the curley bracket if the contents inside the IF-ELSE statement has more than 1 lines
  25. use older client..perhap 2010 ~ 2011 client would be the best choices for you.
×
×
  • Create New...