sever
Members-
Content Count
10 -
Joined
-
Last visited
About sever
-
Rank
Member
Recent Profile Visitors
1794 profile views
-
it should be working. you must have an ammunition equipped and player session variable set (non-zero) should be @SP_AUTOBUYAMMO_GODD: if((sd->equip_index[EQI_AMMO]>=0) && ( pc->readreg(sd,script->add_str("@SP_AUTOBUYAMMO_GODD")) )) and it triggers when your ammunition amount is going to be zero(last arrow left during shooting) or ??!zero??(sd->equip_index[EQI_AMMO]>=0): if( amount <= 1 ) you must have (arrow/bullet/ammo cost + 5) * 10 pcs zenny: unsigned int nzeny = ( i_data->value_buy + 5 )*10; if( !pc->payzeny(sd, nzeny, LOG_TYPE_NONE, NULL) ) it would only buy 9 ((ammo price + 5) * 10 pcs > 9pcs): flag = pc->additem(sd, &it, 9, LOG_TYPE_NONE); after you've shot your last ammo, the plugin would autobuy you 9 arrows and also if its included in conf/plugins.conf (with compiled .so file, product of gcc or included in src/plugin/Makefile.in)
-
sever reacted to a post in a topic: PushCart Decoration
-
sever reacted to a post in a topic: Introducing Hercules' Map Zone Database
-
sever reacted to a post in a topic: Act Editor
-
sever reacted to an answer to a question: How to do SQL updates?
-
Thanks jaBote.
-
is this the command? sql update sql-files/upgrades/2014-09-01--16-53.sql i'm very cautious as there is no revert for this.
-
[SQL]: - detected 1 new SQL updates[SQL]: -- 'sql-files/upgrades/2014-09-01--16-53.sql'[SQL]: To manually skip, type: 'sql update skip <file name>'
-
gvg King of Emperium Hill
sever replied to AnnieRuru's topic in PvP, WoE, GvG, & Battleground Releases
Thanks AnnieRuru. -
sever reacted to a post in a topic: Go and warp delay when hit
-
sever reacted to an answer to a question: [REQUEST] @go Delay when hit
-
sever reacted to a post in a topic: 2014-10-22, Roulette and per-char gender!
-
sever reacted to a post in a topic: Hercules WPE Free - June 14th Patch
-
Thanks, It was resolved after your updates. I haven't went back to developing robrowser lately. But it seems that your demo robrowser has lesser lag than mine. Is wsproxy slowing the browser? How do I boost latency? I also tried the mail system. Maybe my server setup for mail system is broken. Thanks.
-
Bump.
-
I thought Makefile.in was working. http://herc.ws/wiki/Building_HPM_Plugin_for_gcc I just resorted to plugins.conf and then make clean all Thanks jaBote.
-
Help! I can already connect to my own server, and the sprites are loading well. The textures on the other hand are not found. I have attached screenshots below. I already added permissions to the data folder and everything else in it. Failed to load resource: the server responded with a status of 404 (Not Found) http://192.168.1.213...½º/bgi_temp.bmp [Thread] Can't get file (data/texture/À¯ÀúÀÎÅÍÆäÀ̽º/bgi_temp.bmp)
-
Can i request for working plugin that would dispbottom with colors? already tried dispbottomcolor.c and failed. or was i wrong with my compilation procedures? make clean./configuremake pluginsmake plugin.<plugin_name>./athena_start start Thanks.