-
Content Count
2178 -
Joined
-
Last visited
-
Days Won
66
Content Type
Profiles
Forums
Downloads
Staff Applications
Calendar
Everything posted by evilpuncker
-
nice script, btw there is no need anymore to edit mmo.h to edit max zeny xD
-
Registration Url on login interface.
evilpuncker replied to mrlongshen's question in Client-Side Support
done try but the webpage go to this site. http://ro.gnjoy.com then maybe you need to edit the client with some hexadecimal editor to change this url =/ -
How to block certain item on the map
evilpuncker replied to Break San's question in General Server Support
More I want to block only two map. I thought of a script you can still use map_zone_db for 2 maps only just create a new zone -
Registration Url on login interface.
evilpuncker replied to mrlongshen's question in Client-Side Support
clientinfo.xml <registrationweb>www.yoururlhere.com</registrationweb> -
thanks =D
-
How to block certain item on the map
evilpuncker replied to Break San's question in General Server Support
create a new zone and use: http://herc.ws/board/topic/302-introducing-hercules-map-zone-database/ -
kRO Introduces Pet Evolution System, Roulette Game,RoDex
evilpuncker replied to Dastgir's topic in Ragnarok News
it doesn't exist yet, community is not helping :/ http://www.yomrawr.com/ -
Remove transporter endless tower critter
evilpuncker replied to Break San's question in General Server Support
What do not understand, I need to add script? thana_boss mapflag monster_noteleport -
Remove transporter endless tower critter
evilpuncker replied to Break San's question in General Server Support
mf_monster_noteleport -
mob_db.txt ---> mob_db.sql(problem with hex code)
evilpuncker replied to Blinzer's question in Database Support
have you tried this tool already? -
VIP System Bug after remove alternative boost constant
evilpuncker replied to OverLord's question in Script Support
Work!! But you have suggestion for Job Exp Boost? I guess it works for both already -
Why I cant Click My WOE control NPC ?
evilpuncker replied to skipjack94's question in Script Support
any error on console? -
VIP System Bug after remove alternative boost constant
evilpuncker replied to OverLord's question in Script Support
// use this when you add the vip ModDrop = 200; ModExp = 200; // and this when it ends ModDrop = 100; ModExp = 100; -
did u try with mapflag nocommand ? but it will block every command and he wants to block only @storage
-
How to send a email from a script or sql table
evilpuncker replied to exchisu's question in Script Support
I dont know how to create that. thats why im asking here. I have the Script on my Sv who the players write, then this is send to a SQL table.. but i need.. each time a player Write something in the Npc, a email send to me... because i can read it in the Cellphone.... I have: THE SCRIPT who send the message to a SQL table. i Need: The Script who send the message to a SQL table, then send a email to me. anybody ? http://herc.ws/board/topic/295-feeftys-fluxcp-addons-release/ Support Tickets - Version 1.2.1 -
to load custom things inside db folder you should use the mob_db2/item_db2.conf file, only quests can't be added to a secondary file so you might want to change the thread to "add quest_db2.txt file" instead
-
Depurar pico de processamento Map server
evilpuncker replied to kinori's question in Suporte a Source
tenho 99% de certeza de que seu problema é por causa de scripts mal feitos rodando continuamente e causando o alto consumo de recursos do VPS -
I vote for no, there is no "stable" emulator and there will always be things to be fixed in both pre and re modes, if you are really annoyed by that, just fork hercules and work with an own copy of it with the things you want and push the updates as you like btw if you look here you will see that changes are applied to the entire emulator most of the time, not only to renewal, so there is no point to keep two separated emulators... as Dastgir said: double work.
-
RO Patcher Lite, v4.5.0.1340 - last updated 2024/09/21
evilpuncker replied to Ai4rei's topic in Client-Side Releases
nice -
RO Patcher Lite, v4.5.0.1340 - last updated 2024/09/21
evilpuncker replied to Ai4rei's topic in Client-Side Releases
are you going to do any workaround for this: seems like gravity is doing patches with longer file names so we can't view its size -
here: http://herc.ws/board/topic/2525-monster-transform-update/
-
sorry for bothering u here, but how is going to palette editor thing? happy new year anyway
-
in love with 2nd and 4th *0*
-
two places: npc.c // custom merchant shop exp bonus if( battle_config.shop_exp > 0 && z > 0 && (skill_t = pc->checkskill2(sd,idx)) > 0 ) { if( sd->status.skill[idx].flag >= SKILL_FLAG_REPLACED_LV_0 ) skill_t = sd->status.skill[idx].flag - SKILL_FLAG_REPLACED_LV_0; if( skill_t > 0 ) { z = z * (double)skill_t * (double)battle_config.shop_exp/10000.; if( z < 1 ) z = 1; pc->gainexp(sd,NULL,0,(int)z, false); } } pc.c int pc_modifybuyvalue(struct map_session_data *sd,int orig_value) { int skill_lv,val = orig_value,rate1 = 0,rate2 = 0; if((skill_lv=pc->checkskill(sd,MC_DISCOUNT))>0) // merchant discount rate1 = 5+skill_lv*2-((skill_lv==10)? 1:0); if((skill_lv=pc->checkskill(sd,RG_COMPULSION))>0) // rogue discount rate2 = 5+skill_lv*4; if(rate1 < rate2) rate1 = rate2; if(rate1) val = (int)((double)orig_value*(double)(100-rate1)/100.); if(val < 0) val = 0; if(orig_value > 0 && val < 1) val = 1; return val;}
-
if you mean the .txt files, no it isn't.