• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Search results

  1. C

    Gesior problem

    Explain better
  2. C

    Windows MySQL Base

    What are u using ,GESIOR?? or what .why i don't look any table created in your database ,so are u sure have install all good? config/config.ini install = "no" change to yes and try install ? I think but i don't see tables.. instaled
  3. C

    Offline trainers

    @up are u sure works in 0.3? Wibbenz ,same error u only give me other script ,and i try many scripts:p
  4. C

    Solved Site problem(s)!

    and database list ,are u sure only ge this error: Fatal error: Call to a member function fetchAll() on a non-object in C:\xampp\htdocs\classes\databaselist.php on line 68 don't get other ?
  5. C

    Solved Site problem(s)!

    What account are u using ,Gesior? But u use gesior Your problem say OFFLINE is in line 343~ config-and-functions have this made by: $config['status']['serverStatus_checkInterval'] = $statustimeout+3; $config['status']['serverStatus_lastCheck'] = time(); $info =...
  6. C

    Offline trainers

    Don't works offline trainers ,all skills up but magic level don't up.. in 0.3 - 10.10 I have this script: local statue = { [18488] = SKILL_SWORD, [18489] = SKILL_AXE, [18490] = SKILL_CLUB, [18491] = SKILL_DISTANCE, [18492] = SKILL__MAGLEVEL } function onUse(cid, item, fromPosition, itemEx...
  7. C

    Windows Fatal error: Call to a member function fetch() on a non-object

    post website.php? or what line are in 149
  8. C

    Rosha NPCs

    You can Create NPCS..-.- is easy so need enter tibiawikia http://tibia.wikia.com/wiki/Roshamuul_NPCs and see Looktypes and edit one script simple for Items Npc sell ,etc. Example: <?xml version="1.0" encoding="utf-8"?> <npc name="Asnarus" script="default.lua" walkinterval="2000" floorchange="0">...
  9. C

    send broadcast text to players with storage

    Can u explain better? what ur want
  10. C

    Compiling Sources???

    https://github.com/otland/forgottenserver
  11. C

    [Vip Check] help

    Just changed in data/globalevents/scripts/daysremover.lua function onTimer() for function onTime()
  12. C

    [Vip Check] help

    hmm try function onUse(cid, item, fromPosition, itemEx, toPosition) local vipitem = 1 -- item ID medal (Edit 1) if getPlayerItemCount(cid, vipitem) >= 1 then doPlayerRemoveItem(cid, vipitem, 1) setPlayerStorageValue(cid, 11551, 1) doAddVipDays(cid, 12) doRemoveItem(item.uid, 1) else...
  13. C

    Lua error script

    function onLogin(cid) if getPlayerPremiumDays(cid) > 0 then setPlayerStorageValue(cid, 12449, 1) elseif getPlayerPremiumDays(cid) == 0 and getPlayerStorageValue(cid, 12449) == 1 then doTeleportThing(cid, getTownTemplePosition(getPlayerTown(cid)))...
  14. C

    [Vip Check] help

    Put your script. vip.lua or try in line 11 added one end
  15. C

    [Vip Check] help

    get same error this? function getPlayerVipDays(cid) local Info = db.getResult("SELECT `vipdays` FROM `players` WHERE `id` = " .. getPlayerGUID(cid) .. " LIMIT 1") if Info:getID() ~= LUA_ERROR then local days= Info:getDataInt("vipdays") Info:free() return days end return LUA_ERROR...
  16. C

    [Vip Check] help

    Second part: vipcheck.lua function onLogin(cid) if getPlayerVipDays(cid) >= 1 then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_RED, "You have ".. getPlayerVipDays(cid) .." vip days left.") end return true end vipdaysremover.lua function onTime()...
  17. C

    [Vip Check] help

    ALTER TABLE `players` ADD `vipdays` int(11) NOT NULL DEFAULT 0; 050-functions function getPlayerVipDays(cid) local Info = db.getResult("SELECT `vipdays` FROM `players` WHERE `id` = " .. getPlayerGUID(cid) .. " LIMIT 1") if Info:getID() ~= LUA_ERROR then local days=...
  18. C

    [Vip Check] help

    Ah ok moment
  19. C

    Linux Source stable 8.6?

    not are more subversions.
  20. C

    [Vip Check] help

    Go to your phpmyadmin and execute: ALTER TABLE `accounts` ADD `vipdays` int(11) NOT NULL DEFAULT 0; creaturescripts.xml <event type="login" name="VipCheck" event="script" value="vipcheck.lua"/> creaturescripts/scripts/ login.lua registerCreatureEvent(cid, "VipCheck") LIB open...
Back
Top