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

Recent content by Piifafa

  1. Piifafa

    OTClient Skill Level bug

    It doesn't work. But doing it the way I did before is looking like this after level 638... 1709835408 With this change, would the client be able to read normally?
  2. Piifafa

    TFS 1.X+ Magic level damage increase.

    I get really strong like that ahahaha
  3. Piifafa

    TFS 1.X+ Magic level damage increase.

    I really need to increase the damage of the rune, by the player's ml, but the way I did it little changes, if the person has 120 ml and when using items goes to 145 ml, the increase is very insignificant. local combat = Combat() combat:setParameter(COMBAT_PARAM_TYPE, COMBAT_PHYSICALDAMAGE)...
  4. Piifafa

    Slot stone - ADD critical, manaleach, hp leach TFS 1.5 Nekiro 8.0

    I have something made for this, a little different, I hope it helps you. -- Lista de tipos de armas válidas local weaponTypes = {WEAPON_SWORD, WEAPON_CLUB, WEAPON_AXE} -- Configuração dos atributos local attrConfig = {maxValue = 10} local attrs = { [1] = {code = ITEM_ATTRIBUTE_LIFELEECH...
  5. Piifafa

    Lua Help with attribute item.

    I recently created an item, which gives attributes to some weapons, but it doesn't work well, you can't see the attribute limit, other than that the person can make unimaginably strong weapons. So I added a breakage system, it's cool but people don't like the way it works, so instead of breakage...
  6. Piifafa

    C++ Activate new outfits

    I have a question, I want to activate new clothes, but I don't know how to make it work, I use a nostauris style version on the server, I just want to add the columns which would be from number 161 to 190. bool Player::canWear(uint32_t lookType) const { if (group->access) { return...
  7. Piifafa

    TFS 1.X+ Use item and gain exp instantly.

    I ended up doing it like this, but your solo also works perfectly: function onUse(player, item, fromPosition, target, toPosition, isHotkey) if player then player:addExperience(50000) player:sendTextMessage(MESSAGE_INFO_DESCR, "You received 50000 experience.")...
  8. Piifafa

    TFS 1.X+ Use item and gain exp instantly.

    Hello everyone, thanks for trying to help me! How could I make a script, for use where the person uses it and gains 150 thousand experience instantly? Without having the stage effects that exist in otserver? I made a script that adds more capacity for players, but it wasn't as good for the...
  9. Piifafa

    TFS 1.X+ Creature Invasions Page

    bump
  10. Piifafa

    TFS 1.X+ Creature Invasions Page

    Someone to help me?
  11. Piifafa

    C++ Customer input.

    I see that many are unable to correctly use the part that shows about discord and online player in the customer entry, I would like to share my solution, I don't know if there is anything better than that. But if so, leave it here so everyone can use it. How did I get it to work? status.php...
  12. Piifafa

    Lua Help with a spell

    fectPor[/CODE] It worked well, now I feel like a luxury!
  13. Piifafa

    Lua Help with a spell

    <instant name="Heal Friend Max" words="exura max sio" maglv="7" mana="70" aggressive="0" blockwalls="1" needtarget="1" playernameparam="1" params="1" needlearn="0" script="spells/heal friend max.lua"> <vocation name="Druid" /> <vocation name="Elder Druid" /> </instant>
  14. Piifafa

    Lua Help with a spell

    error :( Lua Script Error: [Spell Interface] data/spells/scripts/spells/heal friend max.lua:onCastSpell data/spells/scripts/spells/heal friend max.lua:28: attempt to index local 'target' (a nil value) stack traceback: [C]: in function '__index' data/spells/scripts/spells/heal...
Back
Top