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

  1. Amino12

    Solved [Spell] No Heal myself using spells/runes

    Maybe a onStatsChange script in creaturescripts blocks it?
  2. Amino12

    Show Percent when attack/heal

    In file game.cpp find and change: sprintf(buffer, "+%d", healthChange); to: int32_t healthPercent = round((double)(healthChange * 100) / target->getMaxHealth()); sprintf(buffer, "+%d%%", healthPercent); And change: sprintf(buffer, "%d", damage); to int32_t healthPercent =...
  3. Amino12

    Solved [Spell] No Heal myself using spells/runes

    That's weird. Have you changed anything in sources?
  4. Amino12

    Solved Frags page

    Try this: <?php require_once 'engine/init.php'; include 'layout/overall/header.php'; ?> <h2>Top PVP Players</h2> <?php $getfrags = mysql_query("SELECT `frags`, `level`, `name` FROM `players` ORDER BY `frags` DESC"); $fetchfrags = mysql_fetch_assoc($getfrags); foreach($fetchfrags as...
  5. Amino12

    Solved CTF Timer Help

    function teleportThing(minutes) if minutes <= 0 then for _, cid in ipairs(getPlayersOnline()) do if isInRange(getThingPos(cid), t.fromPos, t.toPos) then if math.random(1, 3) < 3 then setPlayerStorageValue(cid, t.redStorage, 1) doAddCondition(cid, conditionRed)...
  6. Amino12

    max hp/mana/level bar

    int32_t health, healthMax; int32_t mana, manaMax; in creature.h change it to int64_t health, healthMax; int64_t mana, manaMax; But i'm not sure if it won't make compile errors.
  7. Amino12

    Solved Error on TFS

    I'm not sure but probably u already have active process theforgottenserver.
  8. Amino12

    Windows Gesior 4Story error

    You have missing files layouts/tibiacom/layout_config.ini and layouts/tibiacom/layout.php. Probably you paste layout to the wrong directory.
  9. Amino12

    Lua NPC Script

    Can u give full npc script?
  10. Amino12

    Player.cpp, player.h information needed

    You can add to database a field extraAttackSpeed(or whatever) and make it load and save in iologindata.cpp in functions savePlayer and loadPlayer.
  11. Amino12

    Lua [MOD] Sell Character InGame!

    There shouldn't be instead of: <=!=[=C=D=A=T=A=[[ and ]=]=> This: <![CDATA[ and ]]> ?
  12. Amino12

    Padłem na ziemie

    Najważniejsze to mieć pomysł xD
  13. Amino12

    Solved debugging while walking in a area

    What about restart server or trying with another character?
  14. Amino12

    Solved debugging while walking in a area

    Probably there is a bugged item or graphic or something like that, open your map in map editor and look for it.
  15. Amino12

    saund

    There is not such script, at least not published. If you want it, you can do it yourself.
Back
Top