Jump to content

Emistry

Forum Moderator
  • Posts

    10018
  • Joined

  • Days Won

    409

Everything posted by Emistry

  1. run this trunk/sql-files/upgrades/upgrade_svn16518.sql refer this Favorite_tab please use search engine next time
  2. Emistry

    Monster EXP

    are you using RENEWAL_EXP ? trunk/src/config/renewal.h /// renewal exp rate algorithms /// (disable by commenting the line) /// /// leave this line to enable renewal item exp rate algorithms /// while enabled a special modified based on the difference between the player and monster level is applied #define RENEWAL_EXP if yes...disable it.....this renewal setting will adjust the exp you gained based on your level gap between your player and monster. anyway....you can still change the adjust rate here trunk/db/re/level_penalty.txt
  3. use this trunk/doc/item_bonus.txt bonus2 bAddItemHealRate,n,x; Increases HP recovered by n type items by x%, you can also use direct item IDs instead of group values. (Check db/item_group_db.txt)
  4. try change if( getequippercentrefinery(.@part) > rand(100) || getequippercentrefinery(.@part) > rand(100) ){ to if( ( getequippercentrefinery(.@part) > rand(100) || getequippercentrefinery(.@part) > rand(100) ) || getequiprefinerycnt(.@part) < 4 ) { btw..i was wondering..isnt that the advanced refiner did refine +1 ~ +4 100% success ? and normally...player would use normal refiner for +1 ~ +4 then only they start to use advanced refiner... advanced refiner doesnt give you a constant rate of refine succes...it just gave you "another chances" to get success refine if the first try failed. ( rate calculation )
  5. we have this file ~ trunk/db/re/level_penalty.txt
  6. @zodan456 http://eathena.ws/forum/topic/40-euphys-quest-shop/
  7. i believe it's an instances script .... an instances script doesnt spawn mob naturally....it has to be triggered by npc or certain condition... anyway, if you insist to add it..then you can refer this.. Permanent_Monster_Spawn
  8. truncate / drop your login table....and re-import....the reason for the error is that inside your login table already got a row with primary key of 1 ...and you cant have more than 1 duplicated primary key inside 1 table..
  9. trunk/npc/merchants/cash_trader.txt
  10. 3rd job class isnt disable by Client..it's by server side...like...disable player from change to 3rd job through npc...or etc...
  11. change OnMinute30: to OnClock0030: OnClock0430: OnClock0830: OnClock1230: OnClock1630:
  12. *setnpcdisplay("<npc name>", "<display name>", <class id>, <size>) *setnpcdisplay("<npc name>", "<display name>", <class id>) *setnpcdisplay("<npc name>", "<display name>") *setnpcdisplay("<npc name>", <class id>) Changes the display name and/or display class of the target NPC. Returns 0 is successful, 1 if the NPC does not exist. Size is 0 = normal 1 = small 2 = big.
  13. @Ryoken inside post#1 or.... script release section
  14. trunk/db/re/item_noequip.txt
  15. type /miss or ctrl + Y and toggle the /miss
  16. Emistry

    Rentitem

    rentitem 2357,60400; rentitem 2357,60400; execute the script 2 time...
  17. /effect ??? or /aura ???
  18. update your svn...otherwise just remove that part.. if ( !instance_check_party( getcharid(1), 1, 70 ) ) { mes "some of your party member do not meet base level requirement"; close; }
  19. msgstringtable.txt is read by the client ... you have to edit / hex your client in order to make it read your custom mesage inside it. for server side...we usually use trunk/conf/msg_athena.conf
  20. Emistry

    Quest

    that's why i ask you setup your own offline server and test it before transfer it to your online server... mes "1000 Blue Herb; <----------------missing quotation mark..
  21. Emistry

    Quest

    mes "35 Turquoise"; 7294 mes "1000 Blue Herb; 510 <---- missing quotes symbol mes "70 Aquamarine"; 720 mes "120 Blue Hair"; 1034 mes "30 Alligator Card"; 4252 mes "40 Immortal Stew"; 12085 mes "5 Stormy Knight Card"; 4318 mes "5 Ogretooth Card"; 4254 all the number behind these ....make the script error... and same goes for the rest inside your script.. and i dont think numerical event label can be used in script.. just refer to your error that shown in your map server just setup a test server and run at your pc..
  22. Emistry

    Converter NPC

    ~.~ this can .... http://upaste.me/1d10278cd3db1e7
  23. Emistry

    PvP warper

    remove this if( strcharinfo(3) == .MapName$[0] || strcharinfo(3) == .MapName$[1] || strcharinfo(3) == .MapName$[2] ){ message strcharinfo(0),"You died and will be revived."; sleep2 500; atcommand "@Alive"; warp .MapName$[0],0,0; }
  24. Emistry

    PvP warper

    trunk/conf/mapflag/gvg.txt // GvG Arenas ============= guild_vs1 mapflag gvg guild_vs2 mapflag gvg guild_vs3 mapflag gvg guild_vs4 mapflag gvg guild_vs5 mapflag gvg these map are GVG maps by default....you cant set both PVP and GVG mapflag in 1 map.... you have to remove the GVG map..and set the PVP map...
  25. Emistry

    Converter NPC

    http://rathena.org/board/topic/62590-ygg-room-and-ygg-ticket/#entry97337 http://rathena.org/board/topic/57288-hunting-spear-quest/#entry70052 http://rathena.org/board/topic/63784-need-help-with-my-script/#entry102510
×
×
  • Create New...