Jump to content

Dastgir

Script Developers
  • Content Count

    3805
  • Joined

  • Last visited

  • Days Won

    250

Everything posted by Dastgir

  1. https://github.com/HerculesWS/Hercules/pull/1509 Wait for 1-2 days for it to be merged
  2. https://www.visualstudio.com/downloads/ Visual studio community edition is free
  3. Change these 2 lines for the meantime: int max_blv_exp_gain = 5; // when player reach this BaseLevel, they stop gain BaseExp int max_jlv_exp_gain = 5; // when player reach this JobLevel, they stop gain JobExp I just learned that addBattleConf needs some changes so that it can read from battle folder.
  4. Which servers to close first? I tried closign map-server first and waiting 10 minutes, but some players are still losing items.Use @kickallKicking all would mean force saving the characters, I usually give broadcast in server from 1 hour before. So that's clear indication for not doing anything important. (Also don't believe what the others say), kickall should save all things almost instantly, so closing all of them after few seconds of kicking would mean the same as closing map server and waiting...
  5. There's no such line in that plugin
  6. Invalid default value: problem is similar to https://github.com/HerculesWS/Hercules/issues/276 You just need to change default attribute from sql file of fluxcp
  7. You don't need physical map file but I suspect there might be physical map file that's why this error is coming
  8. That Error usually happens when you manually rename the map file, you need to rename it via browedit
  9. ACMD(autoattack) { if (sd->bl.m != map->mapname2mapid("gold_room_map_name")) { clif->message(fd, "AutoAttack cannot be used on this map."); return false; } if (sd->sc.option & OPTION_AUTOATTACK) { sd->sc.option &= ~OPTION_AUTOATTACK; unit->stop_attack(&sd->bl); clif->message(fd, "Auto Attack OFF"); } else { sd->sc.option |= OPTION_AUTOATTACK; timer->add(timer->gettick()+200, autoattack_timer, sd->bl.id, 0); clif->message(fd, "Auto Attack ON"); } clif->changeoption(&sd->bl); return true; }
  10. db/item_vending.txt You have that file? Please mention the client date if you have installed all the files and not yet working
  11. Hercules bug (introduced on recent training ground changes): Fixed @ https://github.com/HerculesWS/Hercules/commit/c40d4995c93a9e932356ed952328f97e97c3aa0f (Please open bug report at github, so it could be referred on commit message, and also not all dev see forum for bug report)
  12. WeeMapCache would change the MapID completely, It have some weird issues with water tiles Better to use hercules mapcache with --rebuild argument "mapcache.exe --rebuild" would rebuild the mapcache completely.
  13. Honestly, Dev's are more interested in raw data, rather than testing from server(which is too much time consuming), but testing too are required, but only some times, and not everytime
  14. Maybe because this GRF is LZMA compressed, and he might be using normal cps?
  15. You should probably provide more information with screenshots and crashdump
  16. For Linux: http://herc.ws/wiki/Building_HPM_Plugin_for_gcc Windows: http://herc.ws/wiki/Building_HPM_Plugin_for_MSVC
  17. https://github.com/dastgir/HPM-Plugins/blob/master/src/plugins/autoattack.c My Plugin Collection have all updated plugins (and is usually updated)
  18. Probably not, since Shield for RO requires modification on server side, and on aegis, we don't have source code of it(but only compiled zone and db/script files)
  19. Dastgir

    help

    New Clients Aren't supported
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.