[Release] ExtendedBG for Hercules (with eAmod BG modes)

yes, that would happen if you remove data from array, because the BGTypes are assigned constant, which would be looked up in the array.

To disable the arena, you need to set false in respective index of

setarray .bg_enabled[BGT_CTF], true ,true ,true ,true ,true ,true ,true ,true ,true , true;

Holy, I am so sorry. I won't see this, thanks for reply.

About the Emergency Call can be cast repeatedly... No Countdown delay.

 
Last edited by a moderator:
Emergency Call can be cast repeatedly..
BG Type (Announce) is not working.. should rotate the bg type in configure time using OnTimer10000: // Rotation if BG don't start (10 seconds or?)...?

Also is NPC Telma supported in this Extended BG? Like the mapflag for BG Items that can be used only BG Maps or WoE Exclusive Items.
Fixed, also added BG Type Announce (check .bg_common array for configuration of time)

I do have bg items coded in source, but currently no way to create it, can you explain how NPC Telma works?

 
[Error]: --- nullpo info --------------------------------------------
[Error]: ExtendedBG.c:4897: 'tsd' in function `ebg_clif_send'
[Error]: ./map-server(assert_report+0x83) [0x657373]
[Error]: plugins/ExtendedBG.so(ebg_clif_send+0xd4) [0x7f44c74f8764]
[Error]: plugins/ExtendedBG.so(ebg_broadcast2+0xd0) [0x7f44c74f8b30]
[Error]: plugins/ExtendedBG.so(buildin_bg_announce+0x14a) [0x7f44c74f902a]
[Error]: ./map-server(run_func+0x13a) [0x5bbd5a]
[Error]: ./map-server(run_script_main+0x310) [0x5bcff0]
[Error]: ./map-server(npc_event_sub+0xd2) [0x53aa12]
[Error]: ./map-server(npc_script_event+0x62) [0x53cfb2]
[Error]: ./map-server(clif_parse_LoadEndAck+0xabb) [0x4c79eb]
[Error]: plugins/HPMHooking_map.so(HP_clif_pLoadEndAck+0x91) [0x7f44c77af721]
[Error]: --- end nullpo info ----------------------------------------


after login.

 
NPC Telma uses the bg_reserved_char_id and woe_reserved_char_id.. and sell some BG / WoE Exclusive items.. if you bought that through Telma, you can only use it in BG Maps or WoE Castles.. I tried using bg_reserved_char_id and set it in conf/map/battle/eBG.conf.. 

// BG CharID for Items
bg_reserved_char_id: 1


is this correct? but getting this in map-console ..

Code:
[Warning]: buildin_getbattleflag: non-exist battle config requested bg_reserved_char_id
[Debug]: Source (NPC): Telma at bat_room (163,146)
 
NPC Telma uses the bg_reserved_char_id and woe_reserved_char_id.. and sell some BG / WoE Exclusive items.. if you bought that through Telma, you can only use it in BG Maps or WoE Castles.. I tried using bg_reserved_char_id and set it in conf/map/battle/eBG.conf.. 

// BG CharID for Items
bg_reserved_char_id: 1


is this correct? but getting this in map-console ..

[Warning]: buildin_getbattleflag: non-exist battle config requested bg_reserved_char_id
[Debug]: Source (NPC): Telma at bat_room (163,146)

Try

bg_reserved_char_id: 999998
woe_reserved_char_id: 999999

[Error]: --- nullpo info --------------------------------------------
[Error]: ExtendedBG.c:4897: 'tsd' in function `ebg_clif_send'
[Error]: ./map-server(assert_report+0x83) [0x657373]
[Error]: plugins/ExtendedBG.so(ebg_clif_send+0xd4) [0x7f44c74f8764]
[Error]: plugins/ExtendedBG.so(ebg_broadcast2+0xd0) [0x7f44c74f8b30]
[Error]: plugins/ExtendedBG.so(buildin_bg_announce+0x14a) [0x7f44c74f902a]
[Error]: ./map-server(run_func+0x13a) [0x5bbd5a]
[Error]: ./map-server(run_script_main+0x310) [0x5bcff0]
[Error]: ./map-server(npc_event_sub+0xd2) [0x53aa12]
[Error]: ./map-server(npc_script_event+0x62) [0x53cfb2]
[Error]: ./map-server(clif_parse_LoadEndAck+0xabb) [0x4c79eb]
[Error]: plugins/HPMHooking_map.so(HP_clif_pLoadEndAck+0x91) [0x7f44c77af721]
[Error]: --- end nullpo info ----------------------------------------


after login.
After updated code you received this?

 
yes this one
 

Code:
(08/29/2018 19:11:19) [ Error ] : --- nullpo info --------------------------------------------
(08/29/2018 19:11:19) [ Error ] : ExtendedBG.c:4897: 'tsd' in function `ebg_clif_send'
(08/29/2018 19:11:19) [ Error ] : ./map-server() [0x632863]
(08/29/2018 19:11:19) [ Error ] : plugins/ExtendedBG.so(ebg_clif_send+0xd4) [0x7ff046336204]
(08/29/2018 19:11:19) [ Error ] : plugins/ExtendedBG.so(ebg_broadcast2+0xd0) [0x7ff0463365d0]
(08/29/2018 19:11:19) [ Error ] : plugins/ExtendedBG.so(buildin_bg_announce+0x14a) [0x7ff046336aca]
(08/29/2018 19:11:19) [ Error ] : ./map-server() [0x596e7a]
(08/29/2018 19:11:19) [ Error ] : ./map-server() [0x598dd0]
(08/29/2018 19:11:19) [ Error ] : ./map-server() [0x5106c2]
(08/29/2018 19:11:19) [ Error ] : ./map-server() [0x512ca2]
(08/29/2018 19:11:19) [ Error ] : ./map-server() [0x49ad10]
(08/29/2018 19:11:19) [ Error ] : plugins/HPMHooking_map.so(HP_clif_pLoadEndAck+0x91) [0x7ff047a5a3d1]
(08/29/2018 19:11:19) [ Error ] : --- end nullpo info ----------------------------------------
 
I am aware of that warning, I will fix it ASAP.

 
Last edited by a moderator:
Back
Top