The forums will be going offline for an extended maintenance period at 1400hrs GMT on 19th June 2025. The number of hours for this downtime is intentionally not advertised due to the nature of these upgrades.
×
- 0
Can't cosume getBattleFlag("woe_reserved_char_id"); items in WoE
-
Recently Browsing 0 members
- No registered users viewing this page.
Question
iraciz
I'm having issues in WoE, because the potions flagged for that maps are not consumed. can't be used.
This flagged items are from easycore bg telma
.@bgchar = getBattleFlag("bg_reserved_char_id");
.@woechar = getBattleFlag("woe_reserved_char_id");
mes "[Telma]";
if (countitem(.@badge) < (.@cost*.@sets)) {
mes "You don't have enoughts ^FF0000"+getitemname(.@badge)+"s^000000 to buy"+(.@amt*.@sets)+" "+getitemname(.@item_id)+"s.";
} else if (!checkweight(.@item_id, .@amt*.@sets)) {
mes "You are carrying to much weight.";
} else {
delitem .@badge, .@cost*.@sets;
if (.@bg_item) // Battleground's Consumables
getitem2 .@item_id,(.@amt*.@sets),1,0,0, 254, 0, .@bgchar & 0xFFFF, .@bgchar >> 0x10;
else
getitem2 .@item_id,(.@amt*.@sets),1,0,0, 254, 0, .@woechar & 0xFFF, .@woechar >> 0x10;
BG ITEMS ARE WORKING FINE, THE PROBLEM IS THAT THE WOE FLAGGED ITEMS CAN'T BE USED IN THE WOE MAPS, ANY IDEA?
The WoE flagged item, is not consumed, I search every where and I can't find
Where are those battleflags? scr? confs? It seems that the easycore patch do not included this part in his release
.@bgchar = getBattleFlag("bg_reserved_char_id");
.@woechar = getBattleFlag("woe_reserved_char_id");
getitem2 .@item_id,(.@amt*.@sets),1,0,0, 254, 0, .@woechar & 0xFFFF, .@woechar >> 0x10;
Link to comment
Share on other sites
4 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.