• 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!

As remove

lord5

New Member
Joined
Oct 5, 2010
Messages
175
Reaction score
1
Hey how can i remove that As text on items but i still want that it attacks faster without that As is on items cuz player can see that i want to remove that View image: attackspeed
 
item.cpp
Code:
if(it.attackSpeed || (item && item->getAttackSpeed()))
    s << ", AS: " << (item ? item->getAttackSpeed() : it.attackSpeed);

- - - Edited - - -

Do as below mentioned. :p
 
Ninja do you mean
if(it.attackSpeed || (item && item->getAttackSpeed()))
{
if(begin)
{
begin = false;
s << " (";
}
else
s << ", ";

s << "AS: " << (item ? item->getAttackSpeed() : it.attackSpeed);
}
that? you forgot to put "}" this and now i got error on compiling :p
 
Back
Top