Jump to content

Emistry

Forum Moderator
  • Posts

    10018
  • Joined

  • Days Won

    408

Everything posted by Emistry

  1. how about something like this ? OnPCLoadMapEvent: while( strcharinfo(3) == "mapname" ){ // do whatever you want here... sleep2 3000; // or any time delay you want. } end;
  2. just to let you guy know.... this will change the "Incorrect Password" to "Reject from Server" so, GM / Admin should know about this.... if your players accidently / purposely spam it... their account will be treated as DDoS attack by the server and temporary block them from login for a short interval...
  3. disable it....renewal drop will adjust the rate according to your level gap between your character and monsters.....
  4. you have added some "non-existing" bonus...review back what you have add recently....
  5. /data/sprite/cursors.spr find / go download a cursor sprite ...then replace it...
  6. refer http://rathena.org/board/topic/53320-%E3%80%90-emistry-%C2%A9-2012-%E3%80%91e-scripts-collection/page__st__40__p__71628#entry71628 and edit the bitmask value......
  7. maybe you have loaded twice the NPC for npc/custom/Undead/Save.txt otherwise...rename the NPC so that it doesnt have same name... there is no such mapflag mapname mapflag nogoto so please remove it in your script above... please make sure you are using rAthena...or applied the striing manipulation command diff
  8. make sure you have added the map "monopoly" correctly....you cant use this script without the map provided...
  9. whatever value you want....
  10. no matter what variable you use...you still can access it....with this.. getvariableofnpc() or other method..if there is any.....
  11. lua/stateicon/stateiconinfo.lua https://subversion.assembla.com/svn/ClientSide/Lua_Project/lua%20files/stateicon/stateiconinfo.lua
  12. @zelek what kind of problem ??? if it's about the skill level adjust problem....maybe you can refer to previous post of this topic ?
  13. i think 1 topic is enough..... http://rathena.org/board/topic/70758-help-checking-sloted-item/#entry137185
  14. if( getequipcardid( .@EQPart,0 ) == 4047 ){ mes "You equipped Card"; close; }
  15. i think you need this.. http://rathena.org/board/topic/65341-guild-monster/page__hl__guildmonster guildmonster() isnt an official script command for rAthena.....
  16. i think you can try edit this part... trunk/src/map/battle.c case MO_EXTREMITYFIST: { //Overflow check. [skotlex] unsigned int ratio = skillratio + 100*(8 + sstatus->sp/10); //You'd need something like 6K SP to reach this max, so should be fine for most purposes. if (ratio > 60000) ratio = 60000; //We leave some room here in case skillratio gets further increased. skillratio = (unsigned short)ratio; status_set_sp(src, 0, 0); } edit the value for skill formula.....edit the max ratio....etc...whatever you want to do with it... make sure you recompile after edit.
  17. Emistry

    Job Master

    show your script...we dont know how ur script work... anyway if your script contain this.... if( SkillPoints ){ remove it....
  18. Emistry

    Question

    https://subversion.assembla.com/svn/ClientSide/Lua_Project/lua%20files/optioninfo/optioninfo.lua
  19. there is alot exchanger script in forum..i am sure you will found 1 when you search for it.
  20. https://subversion.assembla.com/svn/ClientSide/Translation_Project/data/
×
×
  • Create New...