Caspian 23 Posted October 31, 2019 (edited) Battleground mode: Name: Battleground -- Treasure Hunt -- Map: dew_fild01 In the image there are two suggestions where the blue and red team might born. (Their Base) Objetives: > The teams have to find the Treasure Chest on the map and kill it. > When you kill the Treasure Chest your team make 1 point. > The Treasure Chest is born in a random spot anywhere on the map. > The Treasure Chest has 200 HP(or more perhaps). And everyone hits 1 on it. (So the teams have the change to find it and fight against each other while someone is breaking it) > After killing it, the teams are teleported back to their base and the Treasure Chest is born again anywhere on the map and your team have to find it again. > The first team that make 3 Points wins the Battleground. I hope I was clear. Treasure sprite: Edited October 31, 2019 by Caspian Quote Share this post Link to post Share on other sites
Dastgir 1246 Posted October 31, 2019 7 hours ago, Caspian said: Battleground mode: Name: Battleground -- Treasure Hunt -- Map: dew_fild01 In the image there are two suggestions where the blue and red team might born. (Their Base) Objetives: > The teams have to find the Treasure Chest on the map and kill it. > When you kill the Treasure Chest your team make 1 point. > The Treasure Chest is born in a random spot anywhere on the map. > The Treasure Chest has 200 HP(or more perhaps). And everyone hits 1 on it. (So the teams have the change to find it and fight against each other while someone is breaking it) > After killing it, the teams are teleported back to their base and the Treasure Chest is born again anywhere on the map and your team have to find it again. > The first team that make 3 Points wins the Battleground. I hope I was clear. Treasure sprite: This seems more like a hide and seek event rather than BG mode Quote Share this post Link to post Share on other sites
Psyz 0 Posted November 29, 2019 (edited) trocar armas gloriosas por distintivos? O sistema de happy hour pode colocar ou será colocado na fonte ou npc? Um ótimo roteiro já grato! Como se estivesse definido no eamod (common.txt): // Happy Hour do BattleGround OnDoHappyHour: OnClock1600: OnClock1800: OnClock2000: OnClock2200: switch (gettime (4)) { caso 1: caso 3: caso 5: if (gettime (3)> = 20 && gettime (3) <22) { anunciar "- O Happy Hour do campo de batalha foi iniciado | Modo Arena Classificado -", 0,0x00FF00; setbattleflag "bg_reward_rates", 120; // + 20% de taxas de recompensa setbattleflag "bg_ranked_mode", 1; fim; } if (gettime (3) == 22) { anunciar "- O Happy Hour do campo de batalha acabou | Modo Arena Regular -", 0,0x00BFFF; setbattleflag "bg_reward_rates", 100; // Taxas normais setbattleflag "bg_ranked_mode", 0; fim; } quebrar; caso 2: caso 4: caso 6: if (gettime (3)> = 16 e& gettime (3) <18) { anunciar "- O Happy Hour do campo de batalha foi iniciado | Modo Arena Classificado -", 0,0x00FF00; setbattleflag "bg_reward_rates", 120; // + 20% de taxas de recompensa setbattleflag "bg_ranked_mode", 1; fim; } if (gettime (3) == 18) { anunciar "- O Happy Hour do campo de batalha acabou | Modo Arena Regular -", 0,0x00BFFF; setbattleflag "bg_reward_rates", 100; // Taxas normais setbattleflag "bg_ranked_mode", 0; fim; } quebrar; } fim; } Edited November 29, 2019 by Psyz Quote Share this post Link to post Share on other sites
Dastgir 1246 Posted November 29, 2019 6 hours ago, Psyz said: trocar armas gloriosas por distintivos? O sistema de happy hour pode colocar ou será colocado na fonte ou npc? Um ótimo roteiro já grato! Como se estivesse definido no eamod (common.txt): Reveal hidden contents // Happy Hour do BattleGround OnDoHappyHour: OnClock1600: OnClock1800: OnClock2000: OnClock2200: switch (gettime (4)) { caso 1: caso 3: caso 5: if (gettime (3)> = 20 && gettime (3) <22) { anunciar "- O Happy Hour do campo de batalha foi iniciado | Modo Arena Classificado -", 0,0x00FF00; setbattleflag "bg_reward_rates", 120; // + 20% de taxas de recompensa setbattleflag "bg_ranked_mode", 1; fim; } if (gettime (3) == 22) { anunciar "- O Happy Hour do campo de batalha acabou | Modo Arena Regular -", 0,0x00BFFF; setbattleflag "bg_reward_rates", 100; // Taxas normais setbattleflag "bg_ranked_mode", 0; fim; } quebrar; caso 2: caso 4: caso 6: if (gettime (3)> = 16 e& gettime (3) <18) { anunciar "- O Happy Hour do campo de batalha foi iniciado | Modo Arena Classificado -", 0,0x00FF00; setbattleflag "bg_reward_rates", 120; // + 20% de taxas de recompensa setbattleflag "bg_ranked_mode", 1; fim; } if (gettime (3) == 18) { anunciar "- O Happy Hour do campo de batalha acabou | Modo Arena Regular -", 0,0x00BFFF; setbattleflag "bg_reward_rates", 100; // Taxas normais setbattleflag "bg_ranked_mode", 0; fim; } quebrar; } fim; } Can you please use english in this topic? Quote Share this post Link to post Share on other sites
Psyz 0 Posted November 29, 2019 2 hours ago, Dastgir said: Você pode usar o inglês neste tópico? Sorry, I forgot. This spoiler shows how the happy hour issue works on the eamod source. And I also asked about the Glorious Weapons Shop, whether they already have them with badges or not. Quote Share this post Link to post Share on other sites
fiction 14 Posted November 30, 2019 3 hours ago, Psyz said: Sorry, I forgot. This spoiler shows how the happy hour issue works on the eamod source. And I also asked about the Glorious Weapons Shop, whether they already have them with badges or not. isn't this? Spoiler OnMinute00: if (gettime(GETTIME_HOUR) < 4) // Don't Choose Ranked Time if it is 12:00AM ~ 4:00 AM (Less players) end; .@year = $BGRanked_ / 1000000; .@month = ($BGRanked_ % 1000000) / 10000; .@day = ($BGRanked_ % 10000) / 100; .@hour = $BGRanked_ % 100; if (.@year == gettime(GETTIME_YEAR) && .@month == gettime(GETTIME_MONTH) && .@day == gettime(GETTIME_DAYOFMONTH)) { if (.@hour == gettime(GETTIME_HOUR)) // Ranked Matches $BGRanked = 1; else // Time has passed or yet to arrive $BGRanked = 0; } else { .@hour = rand(gettime(GETTIME_HOUR), 23); $BGRanked_ = gettime(GETTIME_YEAR) * 1000000 + gettime(GETTIME_MONTH) * 10000 + gettime(GETTIME_DAYOFMONTH) * 100 + .@hour; if (.@hour == gettime(GETTIME_HOUR)) $BGRanked = 1; else $BGRanked = 0; } if (.@ret) return; end; As i know, Happy hours put available Ranked Reward Mode Quote Share this post Link to post Share on other sites
lxlcadulxl 0 Posted December 13, 2019 (edited) Erro #Corrigido Comando SQL: # Arquivo SQL principal CREATE TABLE SE NÃO EXISTE `char_kill_log` ( ` id` INT (11) NÃO NULL AUTO_INCREMENT, `time` DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00', ` killer_name` VARCHAR (25) NOT NULL, `` killer_id` INT (11) NOT NULL, `kill_name` VARCHAR (25) NOT NULL, ` kill_id` INT (11) NOT NULL, `map` VARCHAR (16) NOT NULL DEFAULT '', ` skill` INT (11) NOT NULL DEFAULT '0', `map_type` TINYINT (2) NOT NULL DEFAULT '0', PRIMARY KEY (` id`), ÍNDICE `killer_id` (` killer_id`), INDEX `kill_id` (` kill_id`) ) ENGINE = MyISAM; Mensagens do MySQL: # 1067 - Valor padrão (padrão) inválido para 'time' Edited December 24, 2019 by lxlcadulxl achei solução Quote Share this post Link to post Share on other sites
lxlcadulxl 0 Posted December 24, 2019 (edited) Olá, gostaria de saber se posso suportar discórdia. Estou instalando o ExtendedBG for Hercules (com modos eAmod BG), mas quando colocarei o banco de dados, forneça esta mensagem: MySQL Messages: time DATETIME NOT NULL DEFAULT '0000-00- 00 00:00:00 ', # 1067 - Valor padrão inválido (padrão) para' time 'Como eu poderia solucionar esse erro? Edited December 24, 2019 by lxlcadulxl Já tenho solução Quote Share this post Link to post Share on other sites
lxlcadulxl 0 Posted December 24, 2019 (edited) I was in error for is activating plung because I use windowns to compile, so I used this link: https://github.com/HerculesWS/Hercules/wiki/Building-HPM-Plugin-for-MSVC. Where he helped me build the project and activate the required plunges of "ExtendedBG", and "ExtendedBG-char". Thanks to @Dastgir I was able to install the plugs Edited December 25, 2019 by lxlcadulxl Correção do erro Quote Share this post Link to post Share on other sites
ThyroDree 3 Posted March 26, 2020 (edited) It fixed now, I used the updated plugin files.. Edited March 29, 2020 by ThyroDree Quote Share this post Link to post Share on other sites
ThyroDree 3 Posted March 29, 2020 Hello, Is it possible to disable other arenas? Like I only want enable the Rush,Conquest,CTF,TDM.. others will be disabled Quote Share this post Link to post Share on other sites
FearlesS 1 Posted March 30, 2020 Can someone help me with this plugin / script? like how to use it and inGame commands. i have successfully added it in my hercules emulator, but don't know how it works. Quote Share this post Link to post Share on other sites
ThyroDree 3 Posted March 31, 2020 [Warning]: npc_parse_mapflag: You can't set PvP and BattleGround flags for the s ame map! Removing PvP flag from ebg_ctf in file 'npc/eBG/bg_flavius_ctf.txt', li ne '391'. [Warning]: npc_parse_mapflag: You can't set PvP and BattleGround flags for the s ame map! Removing PvP flag from ebg_td in file 'npc/eBG/bg_flavius_td.txt', line '157'. [Warning]: npc_parse_mapflag: You can't set PvP and BattleGround flags for the s ame map! Removing PvP flag from ebg_sc in file 'npc/eBG/bg_flavius_sc.txt', line '375'. [Warning]: npc_parse_mapflag: You can't set PvP and BattleGround flags for the s ame map! Removing PvP flag from ebg_boss in file 'npc/eBG/bg_tierra_boss.txt', l ine '220'. [Warning]: npc_parse_mapflag: You can't set PvP and BattleGround flags for the s ame map! Removing PvP flag from ebg_tti in file 'npc/eBG/bg_tierra_ti.txt', line '196'. [Warning]: npc_parse_mapflag: You can't set PvP and BattleGround flags for the s ame map! Removing PvP flag from ebg_eos in file 'npc/eBG/bg_tierra_eos.txt', lin e '450'. [Warning]: npc_parse_mapflag: You can't set PvP and BattleGround flags for the s ame map! Removing PvP flag from ebg_dom in file 'npc/eBG/bg_tierra_dom.txt', lin e '182'. [Warning]: npc_parse_mapflag: You can't set PvP and BattleGround flags for the s ame map! Removing PvP flag from ebg_conq01 in file 'npc/eBG/bg_conquest.txt', li ne '953'. [Warning]: npc_parse_mapflag: You can't set PvP and BattleGround flags for the s ame map! Removing PvP flag from ebg_conq02 in file 'npc/eBG/bg_conquest.txt', li ne '965'. [Warning]: npc_parse_mapflag: You can't set PvP and BattleGround flags for the s ame map! Removing PvP flag from ebg_conq03 in file 'npc/eBG/bg_conquest.txt', li ne '977'. [Warning]: npc_parse_mapflag: You can't set PvP and BattleGround flags for the s ame map! Removing PvP flag from ebg_conq04 in file 'npc/eBG/bg_conquest.txt', li ne '989'. [Warning]: npc_parse_mapflag: You can't set PvP and BattleGround flags for the s ame map! Removing PvP flag from ebg_conq05 in file 'npc/eBG/bg_conquest.txt', li ne '1001'. [Warning]: npc_parse_mapflag: You can't set PvP and BattleGround flags for the s ame map! Removing PvP flag from ebg_conq06 in file 'npc/eBG/bg_conquest.txt', li ne '1013'. [Warning]: npc_parse_mapflag: You can't set PvP and BattleGround flags for the s ame map! Removing PvP flag from ebg_rush01 in file 'npc/eBG/bg_rush.txt', line ' 249'. [Warning]: npc_parse_mapflag: You can't set PvP and BattleGround flags for the s ame map! Removing PvP flag from ebg_rush02 in file 'npc/eBG/bg_rush.txt', line ' 260'. [Warning]: npc_parse_mapflag: You can't set PvP and BattleGround flags for the s ame map! Removing PvP flag from ebg_rush03 in file 'npc/eBG/bg_rush.txt', line ' 271'. [Warning]: npc_parse_mapflag: You can't set PvP and BattleGround flags for the s ame map! Removing PvP flag from ebg_rush04 in file 'npc/eBG/bg_rush.txt', line ' 282'. Anyone? I can't the pvp mapflag o-o Quote Share this post Link to post Share on other sites
Caspian 23 Posted April 1, 2020 On 3/31/2020 at 11:39 AM, ThyroDree said: [Warning]: npc_parse_mapflag: You can't set PvP and BattleGround flags for the s ame map! Removing PvP flag from ebg_ctf in file 'npc/eBG/bg_flavius_ctf.txt', li ne '391'. [Warning]: npc_parse_mapflag: You can't set PvP and BattleGround flags for the s ame map! Removing PvP flag from ebg_td in file 'npc/eBG/bg_flavius_td.txt', line '157'. [Warning]: npc_parse_mapflag: You can't set PvP and BattleGround flags for the s ame map! Removing PvP flag from ebg_sc in file 'npc/eBG/bg_flavius_sc.txt', line '375'. [Warning]: npc_parse_mapflag: You can't set PvP and BattleGround flags for the s ame map! Removing PvP flag from ebg_boss in file 'npc/eBG/bg_tierra_boss.txt', l ine '220'. [Warning]: npc_parse_mapflag: You can't set PvP and BattleGround flags for the s ame map! Removing PvP flag from ebg_tti in file 'npc/eBG/bg_tierra_ti.txt', line '196'. [Warning]: npc_parse_mapflag: You can't set PvP and BattleGround flags for the s ame map! Removing PvP flag from ebg_eos in file 'npc/eBG/bg_tierra_eos.txt', lin e '450'. [Warning]: npc_parse_mapflag: You can't set PvP and BattleGround flags for the s ame map! Removing PvP flag from ebg_dom in file 'npc/eBG/bg_tierra_dom.txt', lin e '182'. [Warning]: npc_parse_mapflag: You can't set PvP and BattleGround flags for the s ame map! Removing PvP flag from ebg_conq01 in file 'npc/eBG/bg_conquest.txt', li ne '953'. [Warning]: npc_parse_mapflag: You can't set PvP and BattleGround flags for the s ame map! Removing PvP flag from ebg_conq02 in file 'npc/eBG/bg_conquest.txt', li ne '965'. [Warning]: npc_parse_mapflag: You can't set PvP and BattleGround flags for the s ame map! Removing PvP flag from ebg_conq03 in file 'npc/eBG/bg_conquest.txt', li ne '977'. [Warning]: npc_parse_mapflag: You can't set PvP and BattleGround flags for the s ame map! Removing PvP flag from ebg_conq04 in file 'npc/eBG/bg_conquest.txt', li ne '989'. [Warning]: npc_parse_mapflag: You can't set PvP and BattleGround flags for the s ame map! Removing PvP flag from ebg_conq05 in file 'npc/eBG/bg_conquest.txt', li ne '1001'. [Warning]: npc_parse_mapflag: You can't set PvP and BattleGround flags for the s ame map! Removing PvP flag from ebg_conq06 in file 'npc/eBG/bg_conquest.txt', li ne '1013'. [Warning]: npc_parse_mapflag: You can't set PvP and BattleGround flags for the s ame map! Removing PvP flag from ebg_rush01 in file 'npc/eBG/bg_rush.txt', line ' 249'. [Warning]: npc_parse_mapflag: You can't set PvP and BattleGround flags for the s ame map! Removing PvP flag from ebg_rush02 in file 'npc/eBG/bg_rush.txt', line ' 260'. [Warning]: npc_parse_mapflag: You can't set PvP and BattleGround flags for the s ame map! Removing PvP flag from ebg_rush03 in file 'npc/eBG/bg_rush.txt', line ' 271'. [Warning]: npc_parse_mapflag: You can't set PvP and BattleGround flags for the s ame map! Removing PvP flag from ebg_rush04 in file 'npc/eBG/bg_rush.txt', line ' 282'. [Warning]: npc_parse_mapflag: You can't set PvP and BattleGround flags for the s ame map! Removing PvP flag from ebg_ctf in file 'npc/eBG/bg_flavius_ctf.txt', li ne '391'. [Warning]: npc_parse_mapflag: You can't set PvP and BattleGround flags for the s ame map! Removing PvP flag from ebg_td in file 'npc/eBG/bg_flavius_td.txt', line '157'. [Warning]: npc_parse_mapflag: You can't set PvP and BattleGround flags for the s ame map! Removing PvP flag from ebg_sc in file 'npc/eBG/bg_flavius_sc.txt', line '375'. [Warning]: npc_parse_mapflag: You can't set PvP and BattleGround flags for the s ame map! Removing PvP flag from ebg_boss in file 'npc/eBG/bg_tierra_boss.txt', l ine '220'. [Warning]: npc_parse_mapflag: You can't set PvP and BattleGround flags for the s ame map! Removing PvP flag from ebg_tti in file 'npc/eBG/bg_tierra_ti.txt', line '196'. [Warning]: npc_parse_mapflag: You can't set PvP and BattleGround flags for the s ame map! Removing PvP flag from ebg_eos in file 'npc/eBG/bg_tierra_eos.txt', lin e '450'. [Warning]: npc_parse_mapflag: You can't set PvP and BattleGround flags for the s ame map! Removing PvP flag from ebg_dom in file 'npc/eBG/bg_tierra_dom.txt', lin e '182'. [Warning]: npc_parse_mapflag: You can't set PvP and BattleGround flags for the s ame map! Removing PvP flag from ebg_conq01 in file 'npc/eBG/bg_conquest.txt', li ne '953'. [Warning]: npc_parse_mapflag: You can't set PvP and BattleGround flags for the s ame map! Removing PvP flag from ebg_conq02 in file 'npc/eBG/bg_conquest.txt', li ne '965'. [Warning]: npc_parse_mapflag: You can't set PvP and BattleGround flags for the s ame map! Removing PvP flag from ebg_conq03 in file 'npc/eBG/bg_conquest.txt', li ne '977'. [Warning]: npc_parse_mapflag: You can't set PvP and BattleGround flags for the s ame map! Removing PvP flag from ebg_conq04 in file 'npc/eBG/bg_conquest.txt', li ne '989'. [Warning]: npc_parse_mapflag: You can't set PvP and BattleGround flags for the s ame map! Removing PvP flag from ebg_conq05 in file 'npc/eBG/bg_conquest.txt', li ne '1001'. [Warning]: npc_parse_mapflag: You can't set PvP and BattleGround flags for the s ame map! Removing PvP flag from ebg_conq06 in file 'npc/eBG/bg_conquest.txt', li ne '1013'. [Warning]: npc_parse_mapflag: You can't set PvP and BattleGround flags for the s ame map! Removing PvP flag from ebg_rush01 in file 'npc/eBG/bg_rush.txt', line ' 249'. [Warning]: npc_parse_mapflag: You can't set PvP and BattleGround flags for the s ame map! Removing PvP flag from ebg_rush02 in file 'npc/eBG/bg_rush.txt', line ' 260'. [Warning]: npc_parse_mapflag: You can't set PvP and BattleGround flags for the s ame map! Removing PvP flag from ebg_rush03 in file 'npc/eBG/bg_rush.txt', line ' 271'. [Warning]: npc_parse_mapflag: You can't set PvP and BattleGround flags for the s ame map! Removing PvP flag from ebg_rush04 in file 'npc/eBG/bg_rush.txt', line ' 282'. Anyone? I can't the pvp mapflag o-o You can't set pvp mapflag on battlegrounds maps. Quote Share this post Link to post Share on other sites
ThyroDree 3 Posted April 1, 2020 57 minutes ago, Caspian said: You can't set pvp mapflag on battlegrounds maps. I didn't set any. I just followed the guide. I can't find the pvp mapflag Quote Share this post Link to post Share on other sites
Caspian 23 Posted April 1, 2020 6 hours ago, ThyroDree said: I didn't set any. I just followed the guide. I can't find the pvp mapflag So it might be some change from last revision emulator affecting the plugin. Quote Share this post Link to post Share on other sites
FearlesS 1 Posted April 7, 2020 Can we change BG shop item format to ItemName, Quantity, Price Example - 100 White Potion = 1 BG Badge. Quote Share this post Link to post Share on other sites
MikZ 5 Posted April 8, 2020 Hi I updated my GIT and got this error. Please help me. ExtendedBG.c: In function \u2018skill_notok_pre\u2019: ExtendedBG.c:2084:11: error: \u2018struct map_session_data\u2019 has no member named \u2018skillitem\u2019 if ((*sd)->skillitem == *skill_id) { ^ ExtendedBG.c: In function \u2018unit_guild_skill\u2019: ExtendedBG.c:4052:35: error: \u2018struct map_session_data\u2019 has no member named \u2018skillitem\u2019 if (skill_id < GD_SKILLBASE || sd->skillitem) ^ ExtendedBG.c:4089:9: error: \u2018struct map_session_data\u2019 has no member named \u2018skillitem\u2019 if (sd->skillitem != skill_id) { ^ ExtendedBG.c:4102:4: error: \u2018struct map_session_data\u2019 has no member named \u2018skillitem\u2019 sd->skillitem = sd->skillitemlv = 0; ^ ExtendedBG.c:4102:20: error: \u2018struct map_session_data\u2019 has no member named \u2018skillitemlv\u2019 sd->skillitem = sd->skillitemlv = 0; ^ ExtendedBG.c: In function \u2018record_requirement\u2019: ExtendedBG.c:5466:18: error: \u2018struct <anonymous>\u2019 has no member named \u2018autocast\u2019 if (sd->state.autocast) ^ Quote Share this post Link to post Share on other sites
MikZ 5 Posted April 9, 2020 21 hours ago, MikZ said: Hi I updated my GIT and got this error. Please help me. ExtendedBG.c: In function \u2018skill_notok_pre\u2019: ExtendedBG.c:2084:11: error: \u2018struct map_session_data\u2019 has no member named \u2018skillitem\u2019 if ((*sd)->skillitem == *skill_id) { ^ ExtendedBG.c: In function \u2018unit_guild_skill\u2019: ExtendedBG.c:4052:35: error: \u2018struct map_session_data\u2019 has no member named \u2018skillitem\u2019 if (skill_id < GD_SKILLBASE || sd->skillitem) ^ ExtendedBG.c:4089:9: error: \u2018struct map_session_data\u2019 has no member named \u2018skillitem\u2019 if (sd->skillitem != skill_id) { ^ ExtendedBG.c:4102:4: error: \u2018struct map_session_data\u2019 has no member named \u2018skillitem\u2019 sd->skillitem = sd->skillitemlv = 0; ^ ExtendedBG.c:4102:20: error: \u2018struct map_session_data\u2019 has no member named \u2018skillitemlv\u2019 sd->skillitem = sd->skillitemlv = 0; ^ ExtendedBG.c: In function \u2018record_requirement\u2019: ExtendedBG.c:5466:18: error: \u2018struct <anonymous>\u2019 has no member named \u2018autocast\u2019 if (sd->state.autocast) ^ ExtendedBG.c: In function \u2018skill_notok_pre\u2019: ExtendedBG.c:2084:11: error: \u2018struct map_session_data\u2019 has no member named \u2018skillitem\u2019 if ((*sd)->skillitem == *skill_id) { ^ ExtendedBG.c: In function \u2018unit_guild_skill\u2019: ExtendedBG.c:4052:35: error: \u2018struct map_session_data\u2019 has no member named \u2018skillitem\u2019 if (skill_id < GD_SKILLBASE || sd->skillitem) ^ ExtendedBG.c:4089:9: error: \u2018struct map_session_data\u2019 has no member named \u2018skillitem\u2019 if (sd->skillitem != skill_id) { ^ ExtendedBG.c:4102:4: error: \u2018struct map_session_data\u2019 has no member named \u2018skillitem\u2019 sd->skillitem = sd->skillitemlv = 0; ^ ExtendedBG.c:4102:20: error: \u2018struct map_session_data\u2019 has no member named \u2018skillitemlv\u2019 sd->skillitem = sd->skillitemlv = 0; ^ ExtendedBG.c: In function \u2018record_requirement\u2019: ExtendedBG.c:5466:18: error: \u2018struct <anonymous>\u2019 has no member named \u2018autocast\u2019 if (sd->state.autocast) ^ Up please Quote Share this post Link to post Share on other sites
MikZ 5 Posted April 18, 2020 (edited) 8>ExtendedBG.c 8>D:\games\SQL\Hercules-stable\src\plugins\ExtendedBG.c(2084,13): error C2039: 'skillitem': is not a member of 'map_session_data' 8>D:\games\SQL\Hercules-stable\src\map\pc.h(187): message : see declaration of 'map_session_data' 8>D:\games\SQL\Hercules-stable\src\plugins\ExtendedBG.c(4052,37): error C2039: 'skillitem': is not a member of 'map_session_data' 8>D:\games\SQL\Hercules-stable\src\map\pc.h(187): message : see declaration of 'map_session_data' 8>D:\games\SQL\Hercules-stable\src\plugins\ExtendedBG.c(4089,11): error C2039: 'skillitem': is not a member of 'map_session_data' 8>D:\games\SQL\Hercules-stable\src\map\pc.h(187): message : see declaration of 'map_session_data' 8>D:\games\SQL\Hercules-stable\src\plugins\ExtendedBG.c(4102,6): error C2039: 'skillitem': is not a member of 'map_session_data' 8>D:\games\SQL\Hercules-stable\src\map\pc.h(187): message : see declaration of 'map_session_data' 8>D:\games\SQL\Hercules-stable\src\plugins\ExtendedBG.c(4102,22): error C2039: 'skillitemlv': is not a member of 'map_session_data' 8>D:\games\SQL\Hercules-stable\src\map\pc.h(187): message : see declaration of 'map_session_data' 8>D:\games\SQL\Hercules-stable\src\plugins\ExtendedBG.c(5466,19): error C2039: 'autocast': is not a member of '<unnamed-tag>' 8>D:\games\SQL\Hercules-stable\src\map\pc.h(198): message : see declaration of '<unnamed-tag>' 8>Done building project "ExtendedBG.vcxproj" -- FAILED. Someone please help. willing to pay if not that much. thanks! Edited April 18, 2020 by MikZ Quote Share this post Link to post Share on other sites
cookie-rae 6 Posted April 18, 2020 15 hours ago, MikZ said: 8>ExtendedBG.c 8>D:\games\SQL\Hercules-stable\src\plugins\ExtendedBG.c(2084,13): error C2039: 'skillitem': is not a member of 'map_session_data' 8>D:\games\SQL\Hercules-stable\src\map\pc.h(187): message : see declaration of 'map_session_data' 8>D:\games\SQL\Hercules-stable\src\plugins\ExtendedBG.c(4052,37): error C2039: 'skillitem': is not a member of 'map_session_data' 8>D:\games\SQL\Hercules-stable\src\map\pc.h(187): message : see declaration of 'map_session_data' 8>D:\games\SQL\Hercules-stable\src\plugins\ExtendedBG.c(4089,11): error C2039: 'skillitem': is not a member of 'map_session_data' 8>D:\games\SQL\Hercules-stable\src\map\pc.h(187): message : see declaration of 'map_session_data' 8>D:\games\SQL\Hercules-stable\src\plugins\ExtendedBG.c(4102,6): error C2039: 'skillitem': is not a member of 'map_session_data' 8>D:\games\SQL\Hercules-stable\src\map\pc.h(187): message : see declaration of 'map_session_data' 8>D:\games\SQL\Hercules-stable\src\plugins\ExtendedBG.c(4102,22): error C2039: 'skillitemlv': is not a member of 'map_session_data' 8>D:\games\SQL\Hercules-stable\src\map\pc.h(187): message : see declaration of 'map_session_data' 8>D:\games\SQL\Hercules-stable\src\plugins\ExtendedBG.c(5466,19): error C2039: 'autocast': is not a member of '<unnamed-tag>' 8>D:\games\SQL\Hercules-stable\src\map\pc.h(198): message : see declaration of '<unnamed-tag>' 8>Done building project "ExtendedBG.vcxproj" -- FAILED. 8>ExtendedBG.c 8>D:\games\SQL\Hercules-stable\src\plugins\ExtendedBG.c(2084,13): error C2039: 'skillitem': is not a member of 'map_session_data' 8>D:\games\SQL\Hercules-stable\src\map\pc.h(187): message : see declaration of 'map_session_data' 8>D:\games\SQL\Hercules-stable\src\plugins\ExtendedBG.c(4052,37): error C2039: 'skillitem': is not a member of 'map_session_data' 8>D:\games\SQL\Hercules-stable\src\map\pc.h(187): message : see declaration of 'map_session_data' 8>D:\games\SQL\Hercules-stable\src\plugins\ExtendedBG.c(4089,11): error C2039: 'skillitem': is not a member of 'map_session_data' 8>D:\games\SQL\Hercules-stable\src\map\pc.h(187): message : see declaration of 'map_session_data' 8>D:\games\SQL\Hercules-stable\src\plugins\ExtendedBG.c(4102,6): error C2039: 'skillitem': is not a member of 'map_session_data' 8>D:\games\SQL\Hercules-stable\src\map\pc.h(187): message : see declaration of 'map_session_data' 8>D:\games\SQL\Hercules-stable\src\plugins\ExtendedBG.c(4102,22): error C2039: 'skillitemlv': is not a member of 'map_session_data' 8>D:\games\SQL\Hercules-stable\src\map\pc.h(187): message : see declaration of 'map_session_data' 8>D:\games\SQL\Hercules-stable\src\plugins\ExtendedBG.c(5466,19): error C2039: 'autocast': is not a member of '<unnamed-tag>' 8>D:\games\SQL\Hercules-stable\src\map\pc.h(198): message : see declaration of '<unnamed-tag>' 8>Done building project "ExtendedBG.vcxproj" -- FAILED. Someone please help. willing to pay if not that much. thanks! are you using new version of hercules? Quote Share this post Link to post Share on other sites
fiction 14 Posted April 19, 2020 20 hours ago, MikZ said: 8>ExtendedBG.c 8>D:\games\SQL\Hercules-stable\src\plugins\ExtendedBG.c(2084,13): error C2039: 'skillitem': is not a member of 'map_session_data' 8>D:\games\SQL\Hercules-stable\src\map\pc.h(187): message : see declaration of 'map_session_data' 8>D:\games\SQL\Hercules-stable\src\plugins\ExtendedBG.c(4052,37): error C2039: 'skillitem': is not a member of 'map_session_data' 8>D:\games\SQL\Hercules-stable\src\map\pc.h(187): message : see declaration of 'map_session_data' 8>D:\games\SQL\Hercules-stable\src\plugins\ExtendedBG.c(4089,11): error C2039: 'skillitem': is not a member of 'map_session_data' 8>D:\games\SQL\Hercules-stable\src\map\pc.h(187): message : see declaration of 'map_session_data' 8>D:\games\SQL\Hercules-stable\src\plugins\ExtendedBG.c(4102,6): error C2039: 'skillitem': is not a member of 'map_session_data' 8>D:\games\SQL\Hercules-stable\src\map\pc.h(187): message : see declaration of 'map_session_data' 8>D:\games\SQL\Hercules-stable\src\plugins\ExtendedBG.c(4102,22): error C2039: 'skillitemlv': is not a member of 'map_session_data' 8>D:\games\SQL\Hercules-stable\src\map\pc.h(187): message : see declaration of 'map_session_data' 8>D:\games\SQL\Hercules-stable\src\plugins\ExtendedBG.c(5466,19): error C2039: 'autocast': is not a member of '<unnamed-tag>' 8>D:\games\SQL\Hercules-stable\src\map\pc.h(198): message : see declaration of '<unnamed-tag>' 8>Done building project "ExtendedBG.vcxproj" -- FAILED. 8>ExtendedBG.c 8>D:\games\SQL\Hercules-stable\src\plugins\ExtendedBG.c(2084,13): error C2039: 'skillitem': is not a member of 'map_session_data' 8>D:\games\SQL\Hercules-stable\src\map\pc.h(187): message : see declaration of 'map_session_data' 8>D:\games\SQL\Hercules-stable\src\plugins\ExtendedBG.c(4052,37): error C2039: 'skillitem': is not a member of 'map_session_data' 8>D:\games\SQL\Hercules-stable\src\map\pc.h(187): message : see declaration of 'map_session_data' 8>D:\games\SQL\Hercules-stable\src\plugins\ExtendedBG.c(4089,11): error C2039: 'skillitem': is not a member of 'map_session_data' 8>D:\games\SQL\Hercules-stable\src\map\pc.h(187): message : see declaration of 'map_session_data' 8>D:\games\SQL\Hercules-stable\src\plugins\ExtendedBG.c(4102,6): error C2039: 'skillitem': is not a member of 'map_session_data' 8>D:\games\SQL\Hercules-stable\src\map\pc.h(187): message : see declaration of 'map_session_data' 8>D:\games\SQL\Hercules-stable\src\plugins\ExtendedBG.c(4102,22): error C2039: 'skillitemlv': is not a member of 'map_session_data' 8>D:\games\SQL\Hercules-stable\src\map\pc.h(187): message : see declaration of 'map_session_data' 8>D:\games\SQL\Hercules-stable\src\plugins\ExtendedBG.c(5466,19): error C2039: 'autocast': is not a member of '<unnamed-tag>' 8>D:\games\SQL\Hercules-stable\src\map\pc.h(198): message : see declaration of '<unnamed-tag>' 8>Done building project "ExtendedBG.vcxproj" -- FAILED. Someone please help. willing to pay if not that much. thanks! Reemplace skillitemlv in to: autocast.skill_lv and skillitem in to: autocast.skill_id in ExtendedBG.c Quote Share this post Link to post Share on other sites
Strow 2 Posted April 25, 2020 The system is very good, I came to leave three suggestions to make it perfect. = D 1) Group buffs work directly within the battleground (redemption, angelus, etc ...). 2) Allow the delivery of more than 1 type of emblem at the same time. 3) Allow matches to be played sequentially and not just randomized. But in general the system is excellent! Congratulations! Quote Share this post Link to post Share on other sites
nasagnilac 1 Posted May 3, 2020 (edited) How to install this plugin? I tried to follow this https://herc.ws/wiki/Building_HPM_Plugin_for_MSVC but I receive error when compiling it Edited May 3, 2020 by nasagnilac Quote Share this post Link to post Share on other sites
Rebel 23 Posted May 3, 2020 2 hours ago, nasagnilac said: How to install this plugin? I tried to follow this https://herc.ws/wiki/Building_HPM_Plugin_for_MSVC but I receive error when compiling it Remove eBG_common and eBG_function in the solution. Quote Share this post Link to post Share on other sites