• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!
  • 2026 staff recruitment is open! Check it out and consider applying!

Solved Amulets= Arm:0?

swevaman

New Member
Joined
Jun 18, 2013
Messages
38
Reaction score
0
bODgEpK.png


where in sources do I remove this?

using avesta

here is the part of the code this pertains to i think, if you need more let me know
else if(it.armor != 0 || it.abilities.absorb.any()){
if(it.showCharges){
if(subType > 1){
s << " that has " << (int32_t)subType << " charges left";
}
else{
s << " that has 1 charge left";
}
}

s << " (Arm:" << it.armor;

if(it.abilities.absorb.any()){
s << ", protection";
it.abilities.absorb.getDescription(s);
}
s << ").";
}
 
Last edited:
Back
Top