• 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 Pedro Vincenzo

  1. Pedro Vincenzo

    Can't start server - "TFS Has been executed as root user!"

    So it can be a bad script/data stuff/config.lua. Try to load the server using the executable you've compiled with a default config.lua file and data folder.
  2. Pedro Vincenzo

    Modern AAC - Resitricted names BUG!

    if(in_array(strtolower($unit), $config['invalidNameTags']) || in_array(strtolower($unit), $config['restricted_names'])) { $this->form_validation->set_message('_validName', 'Invalid Name'); return false; }
  3. Pedro Vincenzo

    Can't start server - "TFS Has been executed as root user!"

    Try compiling it with the --enable-root-permission flag at the ./configure step.
  4. Pedro Vincenzo

    Progress of OpenTibia

    I really miss the times of unstable distros and the rush for basic features like Skull System, VIP System, etc.
  5. Pedro Vincenzo

    OTServlist.org OFF?

    I can't access it either.
  6. Pedro Vincenzo

    Server question

    Its all depends of you map size. Players doesn't consume that much. And your OTServ will not crash just for having 512mb of ram. It shall run a 10mb map perfectly.
  7. Pedro Vincenzo

    Compiling WAR SYSTEM ERROR 0.4 r3777.

    Go on /obj folder and delete everthing inside it. Then in Dev-Cpp do "Compile".
  8. Pedro Vincenzo

    MysQl error :S How to fix!

    Something is crashing your mysql server.
  9. Pedro Vincenzo

    Level tiles

    I've revamped it a little bit: function onStepIn(cid, item, pos) local newPosition = {x = position.x, y = position.y, z = position.z} local reqLevel = 2000 if getPlayerLevel(cid) >= reqLevel then doPlayerSendTextMessage(cid, 22, 'You can pass safely.') else newPosition.y =...
  10. Pedro Vincenzo

    Windows Server crashes because I've copied a book with more than 128 chars inside my map.

    vish, RME doesn't do it. Shit! I'll think in something.
  11. Pedro Vincenzo

    Lua Anyway to call functions in 050-functions.lua (so it calls it at start)

    DataObj = {} function DataObj:new(_life, _mana, stuff) return setmetatable({ life = _life mana = _mana stuff = _stuff}, {__index = self} ) end Data = {} function addData(data, value) table.insert(data, value) end object = DataObj:new(150, 50, 13) addData(Data...
  12. Pedro Vincenzo

    Windows Server crashes because I've copied a book with more than 128 chars inside my map.

    Maybe you can save it in XML, do some manual edit, and save again in OTBM.
  13. Pedro Vincenzo

    Lua Getting all creatures currently alive

    Yes, there is. For that you can use: getWorldCreatures(type) Where type is 0 players, 1 monsters, 2 npcs, 3 all. Regards, Pedro
  14. Pedro Vincenzo

    Lua Problem with 050-function.lua

    Post here the script line that the error points and i'll fix for you.
  15. Pedro Vincenzo

    [Evan] Latest Mapping !

    Awesome mapping! Are you in any project atm?
Back
Top