Jump to content

rans

Members
  • Content Count

    358
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by rans

  1. My settings in that is 3 the situation is when i use @pvpon the item will not automatically off. but if i manually take it off and try to put it back. i cant equip it. thats why im going to use a script with loop check so it will automatically nude the equipment when it detects a pvp mapflag.
  2. Well i'm not so sure if that will work on command i mean if somebody is wearing the items on a normal map and i hosted a pvp event so i will just use the command @pvpon it will not automatically take off the equipment so they can still use it.
  3. Hi its an equipment that will automatically turn of when mapflag pvp,gvg is on i've scripted it like this set .pvpcheck,2; //meaningless while ( .pvpcheck < 5){ if( getmapflag( strcharinfo(3),mf_pvp ) || getmapflag( strcharinfo(3),mf_gvg ) ){ sleep2 500; message strcharinfo(0), "You can't use Non Pvp/Gvg items on PvP or GvG Maps, Your items will be taken off"; nude; end; } sleep2 1000; } i am not sure if my code are right but it works fine. my only doubt if it will cause lags on my server if too many players are wearing it.
  4. Hi, I'm planning to create an item that will only work OUTSIDE of pvp and gvg mapflags. so it come to my mind that i can put a loop script in that item. every seconds it will check if the map has pvp or gvg mapflag. now my doubt is will this loop script have an effect on my server? like if every player has the item it will make the server lag? or no change at all? thanks in advance for your answers
  5. Hi @dastgir The warp hit Delay has a Bug. if you are in PvP room and u died twice (Normally if you died twice inside PvP mapflag you will be automatically Warp out.) but in this case the attacker will keep on attacking (normal attack not skill) and the kill counter will keep on counting. it means even if the player is dead the attacker will keep on attacking and gained points because of the warp hit delay preventing the player to warp. (it loops since normal attack is does not stop.)
  6. Very Good Job! i hope he will keep this updated! if only i can give 2 or more rep!
  7. rans

    snap_dodge: BUG

    I dont think so. cause i ddnt report this on github and i dont know how to.. lol
  8. Any update for the custom dll? i've reported this very long time ago. about months. and its still not working. the splash.dll custom dll is not working
  9. yes. i was also looking for that too and its strange there is no message coming from map-server when i tried to login. [only sometimes when i restart server. the map-server automatically exit with a message of [Fatal Error]: Connection to char-server failed 3.] right now i cant provide screenshot since my server is working after a vps reboot and added delay opening of login-char-map server.
  10. Linux- centos 6. not really sure. sometimes server work. sometimes server gets error with [Fatal Error]: Connection to char-server failed 3 i will try to reboot the vps and see what happen Its now working. i've just added 1 second delay opening each server (login-char-map) i dont know why but it seems im not getting the error for now.
  11. Hi, I've just updated to latest git herc. as of (11/15/2015) And i don't have any errors and i notice there is no message on map server when i am trying to login ( even a error no message) Sometimes when i restart server, map-server is automatically closing with this error [Fatal Error]: Connection to char-server failed 3. after a restart again the map-server will work. but i cant login
  12. Im using the latest git (10/28/15) The asura damage is still hitting the opponent even the caster is already dead. I think this is bug. Champion A casted asura to Champion B. and Champion B do the same. both 1 Dex so we can see who will finish first his cast. then Champion A casted first Asura but the Asura of Champion B is still hitting Champion B even he is already dead. Sorry for hard explanation. bump up
  13. go to conf/battle/gm.conf then replace this atcommand_max_stat_bypass: no into atcommand_max_stat_bypass: yes
  14. rans

    eAmod PVP NPC

    You should ask it in eAmod Forum :v
  15. Hi, Can i request modification about absorb spirit. In official RIGHT now HIDE cannot dodge absorb spirit. i want it to make dodgeable by hide. please help. thank you Fixed open src/map/status.c find: // Applies even if the target hides if ((skill->get_ele(skill_id,1) == ELE_EARTH && skill_id != MG_STONECURSE) // Ground type || (flag&1 && skill->get_nk(skill_id)&NK_NO_DAMAGE && skill_id != ALL_RESURRECTION )) // Buff/debuff skills started before hiding hide_flag &= ~OPTION_HIDE; Then just add this " && skill_id != MO_ABSORBSPIRITS " It would be look like this: if ((skill->get_ele(skill_id,1) == ELE_EARTH && skill_id != MG_STONECURSE) // Ground type || (flag&1 && skill->get_nk(skill_id)&NK_NO_DAMAGE && skill_id != ALL_RESURRECTION && skill_id != MO_ABSORBSPIRITS )) // Buff/debuff skills started before hiding hide_flag &= ~OPTION_HIDE;
  16. I've just made up a solution. open src/map/status.c find: // Applies even if the target hides if ((skill->get_ele(skill_id,1) == ELE_EARTH && skill_id != MG_STONECURSE) // Ground type || (flag&1 && skill->get_nk(skill_id)&NK_NO_DAMAGE && skill_id != ALL_RESURRECTION )) // Buff/debuff skills started before hiding hide_flag &= ~OPTION_HIDE; Then just add this " && skill_id != MO_ABSORBSPIRITS " It would be look like this: if ((skill->get_ele(skill_id,1) == ELE_EARTH && skill_id != MG_STONECURSE) // Ground type || (flag&1 && skill->get_nk(skill_id)&NK_NO_DAMAGE && skill_id != ALL_RESURRECTION && skill_id != MO_ABSORBSPIRITS )) // Buff/debuff skills started before hiding hide_flag &= ~OPTION_HIDE; tested it Sorry i dont know how to use box code
  17. rans

    Installation

    Problem solve. I just ask my hosting provider to do something else (I'm not really sure what was that) and now its working
  18. rans

    Installation

    Hi there, So i transfer a webhost but i got problem. i already set the permission of new ip from my sql (database of vps) but when i try to run the control panel. i got SQLSTATE[HY000] [2002] Connection timed out it seems that my new webhost is not allowing itself to connect on my vps. any help? Thank you
  19. In login-server.conf there is a option to enable the Client MD5 hashes will this help to block the bot?
  20. We will be waiting for that :v hahaha
  21. rans

    Npc Constant

    You mean the Sprite_Name right? Thnx
×
×
  • Create New...

Important Information

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