• 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. Sir Islam

    TFS 1.X+ MySQL server has gone away

    [Error - mysql_real_query] Query: UPDATE `players` SET `level` = 864450,`Rebirth ` = 1001,`group_id` = 1,`vocation` = 7,`health` = 173374498,`healthmax` = 196196 000,`experience` = 24909125667931,`lookbody` = 41,`lookfeet` = 115,`lookhead` = 77,`looklegs` = 57,`looktype` = 432,`lookaddons` =...
  2. Sir Islam

    Compiling error in compiling tfs 1.3

    1>c:\users\elwad\desktop\forgottenserver-e\forgottenserv\src\connection.cpp(119): error C2440: '<function-style-cast>': cannot convert from 'Connection::<unnamed-enum-read_timeout>' to 'boost::posix_time::seconds' 1>c:\users\elwad\desktop\forgottenserver-e\forgottenserv\src\connection.cpp(119)...
  3. Sir Islam

    TFS 1.X+ help with debug tfs 1.3

    i got this debug in tfs 1.3 and how to get file debug log in data
  4. Sir Islam

    Compiling help TFS 1.3 vcpkg compile

    i have erros in compile 1>------ Rebuild All started: Project: theforgottenserver, Configuration: Release x64 ------ 1>otpch.cpp 1>Info: Boost.Config is older than your compiler version - probably nothing bad will happen - but you may wish to look for an update Boost version. Define...
  5. Sir Islam

    GlobalEvent NPC looking directions TFS 1.x

    have fun :) globalevents.xml <globalevent name="npc positioning" type="startup" script="npcpositioning.lua"/> npcpositioning.lua local npcPositions = { { position={x = 2005, y = 1999, z = 6}, direction=WEST }, { position={x = 1994, y = 1993, z = 6}, direction=SOUTH }, {...
  6. Sir Islam

    TalkAction /Namelock tfs 1.x

    have fun for all :D Request: [TFS 1.0] namelock/ban reason talkactions.xml <talkaction words="/namelock" separator=" " script="namelock.lua" /> namelock.lua function onSay(player, words, param) if not player:getGroup():getAccess() then return true end local name =...
  7. Sir Islam

    TalkAction Shop System Gesior talkaction tfs 1.x

    have fun :D i just Conversion it to work with 1.x <talkaction words="/addshop" separator=" " script="add_shop_talkaction.lua"/> add_shop_talkaction.lua function onSay(cid, words, param, channel) local params = param:split(",") local price = params[1] table.remove(params, 1) local desc =...
  8. Sir Islam

    doCreatureSetNoMove(cid,allow) tfs 1.x

    how to use it doCreatureSetNoMove(cid,true) doCreatureSetNoMove(cid,false) function doCreatureSetNoMove(cid,allow) if allow then local speed = Player(cid):getSpeed() Player(cid):changeSpeed(-speed) else doChangeSpeed(cid, getSpeed(cid, getPlayerLevel(cid)) - getCreatureSpeed(cid))...
  9. Sir Islam

    CreatureEvent Pvp Arena TFS 1.x

    don't register in login and don't forget to remove Pvp tool from arena in map editor in creaturescripts.xml put this code <event type="login" name="Arena_Login" script="Arena_Death.lua"/> <event type="preparedeath" name="Arena_Death" script="Arena_Death.lua"/> make file name Arena_Death.lua...
  10. Sir Islam

    Lua doSendAnimatedText for TFS 1.0

    Help to convert for TFS 1.0 function doSendAnimatedText(pos, text, color, cid) if tonumber(text) then text = tonumber(text) if cid and isPlayer(cid) then doPlayerSendTextMessage(cid, MESSAGE_EXPERIENCE_OTHERS, '', text, color, pos) else local...
  11. Sir Islam

    Solved Show day and hour

    setPlayerStorageValue(cid,1897, os.time() +24*60*60) local stor = getPlayerStorageValue(cid,1897) how to use this local = left os.date("%D:%H:%M:%S",(stor - os.time())) to show day and hour and minute and second from this Storage when use like it , this show fake time
  12. Sir Islam

    players can't login

    i got this error from more versions i cant host , players got debug and i got this error [3/4/2015 23:1:10] [Warning - Protocol::RSA_decrypt] Not valid packet size (IP: 37.187.146.122)
  13. Sir Islam

    Requests max level , show Rebirth

    1 ) Max Level By Rebirth System ( my code won't work and no error ) local message = "You have reached the max level please go make rebirth." local rebirth = { [300] = {maxlevel = 717217}, [400] = {maxlevel = 1000000}, [600] = {maxlevel = 1500000}, [800] = {maxlevel = 2000000}...
  14. Sir Islam

    Some Rquests

    1 ) I Want To Break Monsters' Hp Limit ... In My Server Max Hp Is About 12 Billion 2 ) unlimited Health and mana of Player the max is About 2.4 Billion i need up it 3 ) after level xxx no gain level and EXPERIENCE
  15. Sir Islam

    GlobalEvent Talking Signs for 8.54 ++ to 9.81 :D

    here we go :D open globalevents.xml and put this line <globalevent name="talkingSigns" interval="3000" event="script" value="talkingSigns.lua"/> than goto data\globalevents\scripts and make file name talkingSigns.lua and put this script there function onThink(interval, lastExecution)...
  16. Sir Islam

    request script sudden death hit by Rebirth system

    if Rebirth 1 hit 500 Rebirth 2 hit 600 Rebirth 3 hit 700 and anther :) and weapons atk by rebirth
  17. Sir Islam

    doSendAnimatedText(pos, text, color, player) --For 9.1

    function doSendAnimatedText(pos, value, color, player) if(not tonumber(value))then return error("arg #2 in doSendAnimatedText is not a number") end if(isPlayer(player))then doPlayerSendTextMessage(player, MESSAGE_EXPERIENCE, "", pos, value, color) else...
  18. Sir Islam

    freeze rune problem

    i use tibia 8.70 1 ) doCreatureSetNoMove no work good because i can move by mouse but keyboard no 2 ) EXHAUST not work i can use heal rune or anther runes i tried to fixed but i fail the script freeze rune local freezetime = 8 local cooldown = 10 -- time to use again local...
  19. Sir Islam

    zombie event problem

    i have problem in zombie event 00:44 Strom entered the Zombie event! Currently 1 players have joined! 00:44 Moon entered the Zombie event! Currently 2 players have joined! 00:45 Good luck in the zombie event people! The teleport has closed! 00:45 The first zombie will spawn in 8...
  20. Sir Islam

    rune

    i need rune make 30 % chance to on or fail to take this Storage xxxx and when on player say on when fail player say fail reb ++
Back
Top