Jump to content

Emistry

Forum Moderator
  • Posts

    10018
  • Joined

  • Days Won

    408

Everything posted by Emistry

  1. here.. *getmapmobs("<map name>") This function will return the total count of monsters currently located on the specified map. If the map name is given as "this", the map the invoking character is on will be used. If the map is not found, or the invoker is not a character while the map is "this", it will return -1. perhaps it is removed in rAthena...coz i ddint found it in rathena/trunk/doc/script_commands.txt
  2. Hmm ? why are you using this ? if(BaseLevel < 99 || JobLevel < 70) goto L_cantCh; if(Class >= 4054 && Class <= 4085) goto L_max; you cant use > or < in eAthena scripting.. that is HTML Symbol tag right ? you cant use in scripting..... i think it should be like this if(BaseLevel < 99 || JobLevel < 70) goto L_cantCh; if(Class >= 4054 && Class <= 4085) goto L_max;
  3. did you cap the exp rate ?? conf/battle/exp.conf // Setting this can cap the max experience one can get per kill specified as a // % of the current exp bar. (Every 10 = 1.0%) // For example, set it to 500 and no matter how much exp the mob gives, // it can never give you above half of your current exp bar. max_exp_gain_rate: 0
  4. i guess what he want is...only apply this "invincible" status toward monster... mean there is no "invincible" status against players and players.... player can attack him anytime even he is in "invincible" status.. but monster cant attack him during the "invincible" status..
  5. http://pastebin.com/raw.php?i=ZNMTNJJA swt...there is no need to spam my inbox in both eA / rA when you are already decide to open a topic... /dum
  6. well..you can try use 3Ceam Breeder... they have Mado / Dragon rent also.. http://3ceam.googlecode.com/svn/trunk/rewrite/npc/custom/breeder_3ceAM.txt
  7. there is a pastebin link there...and it work fine for me http://pastebin.com/raw.php?i=7zGRAiFV
  8. - script charlogin -1,{ OnPCLoginEvent: if( !getgmlevel() ) announce strcharinfo(0)+" has joined ####### Ragnarok Online!",0; end; }
×
×
  • Create New...