-
Content Count
2178 -
Joined
-
Last visited
-
Days Won
66
Content Type
Profiles
Forums
Downloads
Staff Applications
Calendar
Everything posted by evilpuncker
-
a errada tem um L no final
-
what last stable exe for hercules support?
evilpuncker replied to hackerjung's question in Client-Side Support
indeed it does crashes, but the strange thing is that if you feed it while having only 1 pet food, it doesn't crash, but display a message: and if you have more than 1 pet food and try to feed it, crash. I want to secretly summons @@Yommy @@Neo @@Haru @@Dastgir and everyone else that would like to see/try a bit more into this issue, steps to reproduce: - @makeegg poring - @hatch - @item 531 (note: only 1) - feed the poring (and note the message in the client) no crash / to crash / - @item 531 5 (5 or anything higher than 1) - feed the poring -
Please help im making my own server
evilpuncker replied to classy5's question in General Server Support
xampp already includes mysql server and phpmyadmin, there is no need to download anything else I guess ;P by the way I recommend the use of "uniform server" he is a lot more light weight than xampp -
Please help im making my own server
evilpuncker replied to classy5's question in General Server Support
@@classy5 you need to setup a mysql server and setup a db for hercules on it: http://herc.ws/wiki/Installing_SQL#Windows -
Please help im making my own server
evilpuncker replied to classy5's question in General Server Support
is your mysql server running? and I don't recall that hercules had a "homunculus_S_max_level" setting -
http://pastebin.com/raw.php?i=YtxyDRY8
-
what a messy script lol, maybe changing all occurrences of "FishDaily$" into "#FishDaily$" and, "FishLastDay$" into "#FishLastDay$" should do the trick
-
@@xlaws27 knight: factor > 500 multiplicator > 300 150 is the weight bonus: // Structure of Database: // JobID,Weight,HPFactor,HPMultiplicator
-
Please help im making my own server
evilpuncker replied to classy5's question in General Server Support
the exclamation thing is all right, don't worry about it. to compile you need to open Hercules-10.sln file -
estou usando o 2014-10-22b desde o seu lançamento ano passado, e até agora nenhum problema aparente, minha data é baseada no kRO e o único problema q ouvi falar sobre esse client é sobre o quests system q dá alguns bugs de vez em quando. PS: vou migrar pro client de 2015 assim q o hercules tiver suporte completo (ou quase) para ele e suas features.
-
it is really hard to help you if you don't specify any detail about your server and character configuration
-
@@xlaws27 just generate as new table... http://herc.ws/board/topic/9687-hercules-hpsp-table-generator/ easiest thing in the world
-
what last stable exe for hercules support?
evilpuncker replied to hackerjung's question in Client-Side Support
2014-10-22bRagexe here, no problems at all -
impossível pois a msgstringtable do bRO está em inglês essa parte, pode ser q vc estja usando um client meio antigo o qual essas mensagens ainda não eram traduzidas diretamente via msgstringtable, mas eram diretas no client, sugiro testar com um client mais novo e ver se continua assim
-
do you really want it as source code when you can do the very same thing with just a few lines of script? - script kdjshfksdjfh -1,{OnInit: bindatcmd "identifyall", strnpcinfo(0)+"::Onaaa",0,99; end;Onaaa: getinventorylist; for ( .@i = 0; .@i < @inventorylist_count; .@i++ ) { if ( !@inventorylist_identify[.@i] ) { delitem2 @inventorylist_id[.@i], 1,0,0,0,0,0,0,0; getitem @inventorylist_id[.@i], 1; .@c++; } } dispbottom .@c +" items identified"; end;} by annie ruru
- 12 replies
-
- identifyall plugins
- identifyall
-
(and 2 more)
Tagged with:
-
I'm in love >
-
put your mouse cursor a little >> from line number and will appear a blue "+" that will let you add a comment on that line
-
ohoh... I understand now, you choose the files changed page..XD, I always clicked that commit number to see the code before..XD
- Show next comments 60 more
-
-
vai ver ele ta lendo primeiro a grf do kRO no caso em vez da sua, checa a ordem das suas grf no data.ini
-
we will miss you for sure, hope things goes fine with you, have a good time irl
-
Custom Cardscript Job-Declaration the 2nd
evilpuncker replied to Jenox's question in Database Support
seems like you guys are forgetting an "else" statement: if( Class==Job_Alchemist || Class==Job_Creator ) { skill WZ_METEOR,1; bonus2 bAddMonsterDropItem,501,10000; } else if (Class==Job_Blacksmith || Class==Job_Whitesmith) { bonus2 bSkillAtk,WS_CARTTERMINATION,10; } look at valk armor: if(BaseClass==Job_Mage||BaseClass==Job_Archer||BaseClass==Job_Acolyte) bonus2 bResEff,Eff_Silence,5000;else if(BaseClass==Job_Swordman||BaseClass==Job_Merchant||BaseClass==Job_Thief) bonus2 bResEff,Eff_Stun,5000; -
@@koko24 hercules did it in a very nice way: http://herc.ws/board/topic/302-introducing-hercules-map-zone-database/ you just need to read the comments
-
@@Fizik this mod was converted to hercules source, so better use the one in rAthena since your emulator is not based on hercules
-
Rune Knight - Dragon's Breath, How to modify reduce damage by Player's
evilpuncker replied to Cedric.Chan's question in Source Requests
what exactly do you want to do? reduce its damage against demi human? if so, that is pretty easy with map_zone_db -
very handy indeed
-
Old style of Status Immunity through LUK
evilpuncker replied to apuadofrancisco's question in General Server Support
you can change them directly in sources from this line onward -
lol that is really easy and you should just read what it said somewhere in config (most likely config/servers.php), it asked for the timezone you wanted to use, you chose "EDT/-4.0/DST" and that is not an acceptable value, the correct ones are here, like the comment said: // Example: '+0:00' is UTC.// The possible values of 'Timezone' is as documented from the MySQL website:// "The value can be given as a string indicating an offset from UTC, such as '+10:00' or '-6:00'."// "The value can be given as a named time zone, such as 'Europe/Helsinki', 'US/Eastern', or 'MET'." (see below continuation!)// **"Named time zones can be used only if the time zone information tables in the mysql database have been created and populated."