Jump to content

Emistry

Forum Moderator
  • Posts

    10018
  • Joined

  • Days Won

    409

Everything posted by Emistry

  1. echo RSS_Display("http://www.xul.fr/rss.xml", 15); change to your forum RSS link.
  2. for the search for all files in GRF , doesnt really need it to be using regular expression. If it could provide a wildcard feature to search then would be good enough. example. abc_%.txt // '%' as the wildcard, list all files with prefix of "abc_" and ".txt" extension.
  3. use older client
  4. https://github.com/rathena/FluxCP/blob/master/config/servers.php
  5. https://rathena.org/board/topic/102636-guide-convert-script-to-eathena-compatible-version/
  6. bonus bAtk,( readparam( bAtk ) / 20 );
  7. just remove it from the skill db / skill tree since you dont want it ?
  8. try query_sql( "SELECT `login`.`account_id` FROM `login` INNER JOIN `char` ON `char`.`account_id` = `login`.`account_id` WHERE `last_ip` = '"+escape_sql( getcharip() )+"' AND `char`.`online` = 1 AND `login`.`account_id` NOT IN ( SELECT `account_id` FROM `autotrade_merchants` )",.@count ); if ( .@count >= 2 ) { mes "You cant dual login from same IP."; sleep2 5000; atcommand "@kick "+strcharinfo(0); } end;
  9. db/skill_copyable_db.txt
  10. Emistry

    MVP Board

    http://www.eathena.ws/board/index.php?showtopic=242050
  11. Emistry

    Mvpkill

    why not just execute all your sql query into the item_db table ??
  12. use skill
  13. src/common/mmo.h#L67 npc/custom/woe_controller.txt#L67
  14. probably you are using some custom script that trigger leveling mechanic or give exp upon killed players. I remember Shadow Chaser are able to transfer negative effects to other players that they attacked. Not sure is it official tho. I have not playing official for 10+ years. btw ... if you think it's a bug .. kindly post an issue at the GitHub, instead of open a topic in forum and ask other member go check.
  15. both emulator have the same setting to disable renewal.
  16. Similar case happened to me when I upgraded to Window10 ... however its because of the Graphic Card driver issue. Fixed once getting the graphic card driver updated and changed in the setup.exe Its expected to see such problem to occur again just like how Win8 and WinVista did xD
  17. 100 items ... or 4096 length limit if not mistaken ( depend on diff size )
  18. npc/custom/woe_controller.txt euphy woe controller doesnt reset the settings.
  19. https://rathena.org/board/topic/102636-guide-convert-script-to-eathena-compatible-version/
  20. Emistry

    Help

    pcblockmove doesnt exist in your emulator.
  21. if ( countitem(512) >= 1 ) { delitem 512,1; warp "prontera",155,181; } end;
  22. I like the new Map Viewer ... it's great =D Btw, have you planned to enable this search feature to search files in the GRF ? the current files searching/filtering doesnt support this "Search Option" right ? Not sure how this happen, but it cant find the files . The fies doesnt exist even I redownloaded and reinstalled several times.
  23. npc/re/other/pvp.txt
  24. sql-files/upgrades/upgrade_20150619.sql#L1
  25. i guess... damage_rate() isn't declared. You have to declare the method before you can use/apply it in your source code. or your damage_rate() method have error. to find or locate where the function, just click on the function then hit the F12 button. it should be able to re-direct you to the method part (if it's exist)
×
×
  • Create New...