Jump to content

Emistry

Forum Moderator
  • Posts

    10018
  • Joined

  • Days Won

    409

Everything posted by Emistry

  1. refer Permanent_Monster_Spawn
  2. somethinglike this ? http://upaste.me/6e5f275a371f5b9
  3. cant reproduce your issue. npc have been walking around the prontera for over 10+ minutes
  4. refer db/const.txt for the statuses constant. that used in sc_start
  5. try your issue happen probably because your diff files failed, and server didnt compile successfully.
  6. script from #1 post is a totally enhanced + simplified version of your #3 post for #3 OnTimer300000: // 5 minute npctalk "blablablablablabla"; initnpctimer; end;
  7. Emistry

    R>Race Event

    npc/custom/etc/morroc_raceway.txt
  8. prontera,155,180,4 script Animation 100,{ soundeffect "badapple.wav",0; set .@t,46; for(set .@i,1;.@i<=9;set .@i,.@i+1){ cutin "aa0"+.@i,4; sleep2(.@t); cutin "",255; } for(;.@i<=1000;set .@i,.@i+1){ cutin "aa"+.@i,4; sleep2(.@t); cutin "",255; } for(;.@i<=2000;set .@i,.@i+1){ cutin "aa"+.@i,4; sleep2(.@t); cutin "",255; } for(;.@i<=3000;set .@i,.@i+1){ cutin "aa"+.@i,4; sleep2(.@t); cutin "",255; } for(;.@i<=4381;set .@i,.@i+1){ cutin "aa"+.@i,4; sleep2(.@t); cutin "",255; } mes " "; close2; cutin "",255; end; } credit to goddameit. How to get the cutin/pictures ..
  9. a shorter version perhap ? prontera,155,181,5 script Sample#healer 757,{ if ( BaseLevel < 255 && Hp >= MaxHp ) { npctalk "No buff/heal when your HP is full."; } else if ( Hp < MaxHp ){ if ( BaseLevel < 255 ) { skilleffect 34,0; sc_start SC_BLESSING,360000,10; skilleffect 29,0; sc_start SC_INCREASEAGI,360000,10; } percentheal 100,100; npctalk "Good Luck!"; } end; }
  10. sleep ( 5 * 60000 );
  11. movenpc "npcname",x,y; just do some calculation to calculate random xy for your location. * i remember i did reply a topic not long ago, it's about moving npc to random coordinate too. try search.
  12. Emistry

    WoE script

    if not mistaken, I think only ToastOfDoom's WoE controller(link died) and GM Xeon's WOE Setter 3 (very outdated) allow overnight woe. I am not 100% sure about it.
  13. probably you have some scripts that consume up all your resources ?? try read this, maybe it might be able to help you if your situation does match any one that described by AnnieRuru in the topic. http://www.eathena.ws/board/index.php?showtopic=181741
  14. try // right hand set .@refine_part,EQI_HAND_R; if ( getequipisequiped( .@refine_part ) != -1 ) { set .@weapon_lv,getequipweaponlv( .@refine_part ); if ( .@weapon_lv == 1 || .@weapon_lv == 2 ) set .@max_refine,7; else if ( .@weapon_lv == 1 || .@weapon_lv == 2 ) set .@max_refine,5; else set .@max_refine,0; while ( getequiprefinerycnt( .@refine_part ) < .@max_refine ) successrefitem .@refine_part; }
  15. you mean something like this ? http://www.eathena.ws/board/index.php?showtopic=263368
  16. in Rent_Functions.txt find all if (Zeny < 2000) { change to if ( countitem( 512 ) < 2000 ) { // 2000 apple. then... find all set Zeny, Zeny - 2000; change to delitem 512,2000;
  17. ........{},{ if( !ismounting() ) setmounting; },{ if( ismounting() ) setmounting; } you can try like this too. EDIT: please use informative title next time.
  18. disable from distribute item using vending/trade/drop conf/groups.conf can_trade: false
  19. what if i want to make it 7 days which do i need to change? and i also want it in exchange of proof of donations? thanks .@rental_time = 86400; // edit the time. (seconds)
  20. ops it's mapreg. DELETE FROM `mapreg` WHERE `str` LIKE '$topmvp%';
  21. lol, this is just a myth. if this trick was real, everyone would get max refine in no time. @Ego if not mistaken, it would be a tool that can send/edit certain packets that received by server i think. anyway, long long ago before I join eAthena. There do exist some tool that help to calculate the success rate, probably this doesnt exist anymore since the bug/exploit should be eliminated by gravity.
  22. shutdown server and execute this sql command. DELETE FROM `global_reg_value` WHERE `str` LIKE '$topmvp%';
  23. my advance stylelist npc support blacklist style http://rathena.org/board/topic/80563-utility-advanced-stylist/
×
×
  • Create New...