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

Recent content by Ccbtib1

  1. C

    Lua NPC responds one word

    Can try something like this. Not 100% sure if this will work, might need some testing. local function teleportPlayer(player) local topos = { x = 32311, y = 11005, z = 6 } player:teleportTo(topos) end keywordHandler:addGreetKeyword({ "abracadabra" }, teleportPlayer { npcHandler =...
  2. C

    TFS 1.5 PZ Icon Not Showing [ICON_PIGEON]

    look at the sendIcons() functions for the 772 downgrade. It is sending the icons as a byte(2^8) but the pigeon is 2^14 so it is getting cut off. The ICON_REDSWORDS and loop at the end should probably be commented out as well since they will have no significance. Anyways, send over the...
  3. C

    PHP Myaccount.php

    Can you share your myaccount.php file so I can take a look?
  4. C

    [Otx2][0.3.7]You do not have enough skill - problem

    Are any of your chars skills less than 10? Source code defaults that all spells require at least 10 in all skills. Otherwise there's a set value in your spells.xml file.
  5. C

    PHP Myaccount.php

    Read the warning message you got there. Open your myaccount.php file, go to line 361, and initialize the $player_array variable.
  6. C

    RevScripts Set Max Level by revscript

    https://otland.net/threads/set-maximum-level.265521/
  7. C

    [Otx2][0.3.7]You do not have enough skill - problem

    I'm not sure which file exactly, perhaps player.cpp or game.cpp? There should be a .sln file you can open using visual studio which will allow you to search the entirety of the source files for your error string.
  8. C

    Compiling [TFS 1.5] Problem kick and monster

    Whats your EVENT_CREATURE_THINK_INTERVAL set at?
  9. C

    Canary Bakragore taints

    All this taint talk getting me excited. Not too familiar with canary though but sounds like it should be a creaturescript Something like this: local taintKill = CreatureEvent("BakragoresTaint") function taintKill.onKill((player, target) if target:getName():lower() == "bakragore" then...
  10. C

    [Otx2][0.3.7]You do not have enough skill - problem

    Search for that string in the source code and see what it says.
  11. C

    Compiling LIB ERROR iostreams

    Had the same issue heres what worked for me: 1. Right click project -> Properties → Linker → General → Additional Library Directories 2. Enter path for the .lib file 3.Done, now rebuild
  12. C

    TFS version 1.3 doesn't exist?

    On the TFS github in the releases section (Releases · otland/forgottenserver (https://github.com/otland/forgottenserver/releases)) there is no release for version 1.3. It just goes from 1.2 to 1.4. Is there a reason 1.3 is skipped? I know 1.5 got skipped due to too many unofficial versions is...
Back
Top