Hey everyone,
I am returning from a long time ago and I am trying to stabilize my current project and balance the server before migrating to the latest TFS, until then I need to make this lua function pull the value of experience and not return true or false and I am using TFS 0.4
I'm not sure what values to change in luascript.cpp and monster.cpp to make this return a value when using getMonsterInfo(name).experience
the only values that return other than true and false are the values classed as strValue using std::string
luascript.cpp
monster.cpp
I was going to change the values like skull, but I was not sure if that would create an issue for the server retrieving the experience value for the equation used to give players experience. if this is the case, would it be okay for me to add another line for reading the xmlstring and adding something else for experience value returned in lua?
Thank you,
I am returning from a long time ago and I am trying to stabilize my current project and balance the server before migrating to the latest TFS, until then I need to make this lua function pull the value of experience and not return true or false and I am using TFS 0.4
I'm not sure what values to change in luascript.cpp and monster.cpp to make this return a value when using getMonsterInfo(name).experience
the only values that return other than true and false are the values classed as strValue using std::string
luascript.cpp
C++:
lua_newtable(L);
setField(L, "name", mType->name.c_str());
setField(L, "description", mType->nameDescription.c_str());
setField(L, "experience", mType->experience);
setField(L, "health", mType->health);
setField(L, "healthMax", mType->healthMax);
setField(L, "manaCost", mType->manaCost);
setField(L, "defense", mType->defense);
setField(L, "armor", mType->armor);
setField(L, "baseSpeed", mType->baseSpeed);
setField(L, "lookCorpse", mType->lookCorpse);
setField(L, "race", mType->race);
setField(L, "skull", mType->skull);
setField(L, "partyShield", mType->partyShield);
setField(L, "guildEmblem", mType->guildEmblem);
setFieldBool(L, "summonable", mType->isSummonable);
setFieldBool(L, "illusionable", mType->isIllusionable);
setFieldBool(L, "convinceable", mType->isConvinceable);
setFieldBool(L, "attackable", mType->isAttackable);
setFieldBool(L, "hostile", mType->isHostile);
monster.cpp
C++:
int32_t intValue;
std::string strValue;
if(readXMLString(root, "name", strValue))
mType->name = strValue;
else
monsterLoad = false;
if(readXMLString(root, "nameDescription", strValue))
mType->nameDescription = strValue;
else
{
mType->nameDescription = "a " + mType->name;
toLowerCaseString(mType->nameDescription);
}
if(readXMLString(root, "race", strValue))
{
std::string tmpStrValue = asLowerCaseString(strValue);
if(tmpStrValue == "venom" || atoi(strValue.c_str()) == 1)
mType->race = RACE_VENOM;
else if(tmpStrValue == "blood" || atoi(strValue.c_str()) == 2)
mType->race = RACE_BLOOD;
else if(tmpStrValue == "undead" || atoi(strValue.c_str()) == 3)
mType->race = RACE_UNDEAD;
else if(tmpStrValue == "fire" || atoi(strValue.c_str()) == 4)
mType->race = RACE_FIRE;
else if(tmpStrValue == "energy" || atoi(strValue.c_str()) == 5)
mType->race = RACE_ENERGY;
else
SHOW_XML_WARNING("Unknown race type " << strValue);
}
if(readXMLInteger(root, "experience", intValue))
mType->experience = intValue;
if(readXMLInteger(root, "speed", intValue))
mType->baseSpeed = intValue;
if(readXMLInteger(root, "manacost", intValue))
mType->manaCost = intValue;
if(readXMLString(root, "skull", strValue))
mType->skull = getSkulls(strValue);
if(readXMLString(root, "shield", strValue))
mType->partyShield = getShields(strValue);
if(readXMLString(root, "emblem", strValue))
mType->guildEmblem = getEmblems(strValue);
I was going to change the values like skull, but I was not sure if that would create an issue for the server retrieving the experience value for the equation used to give players experience. if this is the case, would it be okay for me to add another line for reading the xmlstring and adding something else for experience value returned in lua?
Thank you,