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

Search results

  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.
  16. Amino12

    Storage Problem

    Ehh, just remove that lines :D Probably u don't need them function onStepIn(cid, item, position, lastPosition, fromPosition, toPosition, actor) local aid = item.actionid-_storage local xpos = {x=996,y=998,z=8} if _tp[aid] == nil then if...
  17. Amino12

    Storage Problem

    _tp = { [1] ={tpos={x=995,y=999,z=7},pos={x=943,y=876,z=9},count=0,text=1,name="Teleports", callback=function(cid) return tpCallback(cid) end, msg={"Welcome to the teleport room.",MESSAGE_STATUS_SMALL}}, [2]...
  18. Amino12

    Storage Problem

    Check(in map editor or game) what actionid has item on position x=995,y=999,z=7 and i will be able to help you.
  19. Amino12

    Click Chest and Hits yourself X HP

    Then i have no idea, what's wrong.
  20. Amino12

    Click Chest and Hits yourself X HP

    What about this? function onUse(cid, item, fromPosition, itemEx, toPosition) doCreatureAddHealth(cid, -500, true) doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Wrong chest, You lost 500HP.") doSendMagicEffect(getCreaturePosition(cid), CONST_ME_CAKE) return true end
Back
Top