Jump to content

Emistry

Forum Moderator
  • Posts

    10018
  • Joined

  • Days Won

    408

Everything posted by Emistry

  1. update your lua / lub file so that your client is compatible with it... you can get the lua file here.. http://subversion.assembla.com/svn/ClientSide/Lua_Project/lubs/ and make sure your client read lub file and not the data folder.... anyway there is alot topic discussed about lub file problem...you can search for it and take a look on it.
  2. trunk/conf/inter_athena.conf // Level range for sharing within a party party_share_level: 15 what you want to edit about skill ? if about delay ..then do it in the db folder.. if about damage ...then do it in the src folder.. there are some topic on how to edit skill damage/delay in forum..and we also got a custom src mod to control skill damage.. just explore the forum...search for it....
  3. Emistry

    De-Refine NPC

    you can try this if you want... http://pastebin.com/raw.php?i=xCVkqftD Use this... http://pastebin.com/raw.php?i=cEiQbRrd
  4. if you are using rAthena ....it's already implemented ... r15489
  5. http://www.eathena.ws/board/index.php?showtopic=204976&hl= if you are using rAthena...it's enabled by default as it's implemented in rA long time ago....
  6. make sure you load the correct SQL file given....
  7. try this... prontera,155,170,5 script Sample 757,{ getinventorylist; mes "Please follow the rules given."; mes "Only Novice can Enter."; mes "Base / Job Level = 1"; mes "Empty your Inventory"; if( !Class && BaseLevel <= 1 && JobLevel <= 1 && !@inventorylist_count ){ if( select("Go RWC Ground:Cancel") == 1 ){ savepoint "quiz_02"147,381; warp "quiz_02"147,381; } } close; } We dont care it's eAmod feature or not ....not our business to take care on this... as long as it's a script request ...then we just build it.... there is no need to claim that TS is copying eAmod or whatever you gonna call it ....
  8. you can try this... http://pastebin.com/raw.php?i=cvtgFbCh
  9. show your script that disable 3rd job class... anyway,if you know how to script..then just make use of this.. OnPCLoadMapEvent: if( strcharinfo(3) == "mapname" && Class >= 4054 ){ mes "You cant Join this WOE"; sleep2 3000; warp "prontera",155,181; } end; just something similar...with the usage of OnPCLoadMapEvent @EvilPuncker OnTouch Event Label are not enough to fix his problem.... large trigger area...able to work...but if i am not mistaken...there might have some issue with large trigger area.. and i cant recall what it's ....
  10. try download the latest svn and re-setup your server ??
  11. you mean reset the hairstyle ?? try this.. Shut Down Server..and run this Query in your PhpMyAdmin / MySQL or etc.. UPDATE `char` SET SET `hair`=1 WHERE `hair` > 1; if you want reset other.... just change the hair to any of these.. hair_color clothes_color or other that you can found inside the char table...
  12. is there any error shown ? did you install your server correctly ? you added any script / src mod that do so ? what revision you are using ?
  13. Love it xD .....but if it can look like the Charmander...i think it would be more awesome xD haha ~ Totodile For the Win !!! xD
  14. yes...it's only for rA now...eA doesnt have certain function that i used in the script ,but if you have applied the Source mod made by ToastOfDoom in eA i think you should be able to use it.
  15. love <3 Any chances to get a Totodile faction ?? xD
  16. change if( #PremiumUser <= gettimetick(2) ) { to if( #PremiumUser <= gettimetick(2) && getgroupid() == 1 ) { change query_sql "UPDATE `login` SET group_id = '1' WHERE account_id = "+getcharid(3)+""; to if( !getgroupid() ) query_sql "UPDATE `login` SET group_id = '1' WHERE account_id = "+getcharid(3)+"";
  17. Emistry

    Theme fluxcp

    http://rathena.org/board/files/file/2380-free-flux-themes-design-no-3/ http://rathena.org/board/files/file/2363-free-flux-themes-design-no-2/ http://rathena.org/board/files/file/2268-free-flux-cp-integration/
  18. you dont have monster to trigger the script ??? monster ............................"Sealdrdetrsxglif::OnMobKilled:";
  19. trunk/src/map/clif.c #ifdef NEW_CARTS if( (type == 9 && sd->status.base_level > 131) || (type == 8 && sd->status.base_level > 121) || (type == 7 && sd->status.base_level > 111) || (type == 6 && sd->status.base_level > 101) || (type == 5 && sd->status.base_level > 90) || (type == 4 && sd->status.base_level > 80) || (type == 3 && sd->status.base_level > 65) || (type == 2 && sd->status.base_level > 40) || (type == 1)) #else change the value behind it...
  20. change L_play: OnHour2: pvpoff "guild_vs2"; to L_play: OnMinute00: OnMinute30: pvpoff "guild_vs2";
  21. you can do it like this... http://pastebin.com/raw.php?i=RevtQREG
  22. try update your svn ? 15157 is outdated long time ago ...its already 16799 trunk
  23. ...still the same for me....nothing wrong.... are you sure it show the error upon warped to the map ?
×
×
  • Create New...