lazarus321
Member
- Joined
- May 8, 2017
- Messages
- 222
- Reaction score
- 23
Says 1.3 in the title, not 1.2.i got this error,
View attachment 43913
my file game.cpp
![]()
[HTML] game.cpp - Pastebin.com
pastebin.com
code: aasfdfdasfdafdasf · Vulcanx/forgottenserver@723b97b
config.lua:
LUA:monsterBonusHealth = 0.5 monsterBonusSpeed = 0.02 monsterBonusDamage = 0.02
how to add to monsters (monster xml file):
XML:<level min="5" max="100" />
for tfs 1.2 users, configmanager is changed in 1.3, so ignore the configmanager.h and configmanager.cpp changes in the main post
instead, use these changes for configmanager in 1.2: as,d,JS<KjDDDD · Vulcanx/forgottenserver@78a84b9
yes just apply the changes from hereWhen a monster appears as level 10 for example, when you kill it, do you gain more EXP / loot than killing a level 5?
data/events/events.xml
data/events/scripts/player.luaCode:<event class="Player" method="onGainExperience" enabled="1" />
Change or Add (idk. depends on your choice and reading of whole function etc.) in PlayernGainExperience(source, exp, rawExp) function:
Code:if source:isMonster() and source:getLevel() > 0 then exp = (((exp * Game.getExperienceStage(self:getLevel()))/2) * source:getLevel()) else exp = exp * Game.getExperienceStage(self:getLevel()) end
g_events->eventPlayerOnGainExperience(this, source, exp, rawExp);
if (exp == 0) {
return;
}
if source:isMonster() and source:getLevel() > 0 then
exp = (((exp * Game.getExperienceStage(self:getLevel()))/2) * source:getLevel())
else
exp = exp * Game.getExperienceStage(self:getLevel())
end
How do I add a skull system Into this?
It's solved already or?
skull="yellow"
you did something wrong or added something else other than this systemIt works successfully in my TFS 1.3. But, after I add that system in my server, all monsters (same having tag hostile = 0 in xml) are hostile. Monsters like Rabbit for example, are attacking me.
How I fix this problem?
you did something wrong or added something else other than this system
this code does not change any monster logic whatsoever, only multipliers to preexisting values
It is possible to rewrite Code line
player.cpp ---->>
C++:g_events->eventPlayerOnGainExperience(this, source, exp, rawExp); if (exp == 0) { return; }
including ----->>
C++:if source:isMonster() and source:getLevel() > 0 then exp = (((exp * Game.getExperienceStage(self:getLevel()))/2) * source:getLevel()) else exp = exp * Game.getExperienceStage(self:getLevel()) end
const Monster* monster = source->getMonster();
if (monster && monster->getLevel() > 0){
exp += (exp * 0.08) * monster->getLevel();
}
g_events->eventPlayerOnGainExperience(this, source, exp, rawExp);
if (exp == 0) {
return;
}
you can make it here ?? /m monster name,level?message me on discord, Stigma#0666
Any idea how to modify the "place monster" command to create monster with a specific level?
bool Game::placeCreatureWithLevel(Creature* creature, const Position& pos, bool extendedPos /*=false*/, bool forced /*= false*/, int32_t level)
{
if (!internalPlaceCreature(creature, pos, extendedPos, forced)) {
return false;
}
creature->setMonsterLevel(level);
SpectatorVec spectators;
map.getSpectators(spectators, creature->getPosition(), true);
for (Creature* spectator : spectators) {
if (Player* tmpPlayer = spectator->getPlayer()) {
tmpPlayer->sendCreatureAppear(creature, creature->getPosition(), true);
}
}
for (Creature* spectator : spectators) {
spectator->onCreatureAppear(creature, true);
}
creature->getParent()->postAddNotification(creature, nullptr, 0);
addCreatureCheck(creature);
creature->onPlacedCreature();
return true;
}