• 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. GhostWD

    TFS 0.X EXP boost temporally

    [How-to] Using addEvent() add one more storage value(endTime) with value os.time()+3600 in -- add 50% exp bonus for 1 hour { doPlayerSetExperienceRate(cid, 1.5) or doPlayerSetRate(cid, "SKILL__LEVEL", 1.5) addEvent with callback set doPlayerSetExperienceRate(cid, 1) } and...
  2. GhostWD

    [PHP][POT] Error Admin Protocol TFS

    Hello OTLanders! I've got problem with POT i keep getting error: Fatal error: Uncaught E_OTS_OutOfBuffer in C:\xampp\htdocs\POTTEST\POT\classes\OTS_Buffer.php:140 Stack trace: #0 C:\xampp\htdocs\POTTEST\POT\classes\OTS_Buffer.php(155): OTS_Buffer->check() #1...
  3. GhostWD

    [FMAAC] FlatMannerAAC MVC Symfony4

    This is what i call being ADMIN... numbers! SOON! PS. fmAAC now comes with installator script (install.sh) need to rewrite README.MD
  4. GhostWD

    [FMAAC] FlatMannerAAC MVC Symfony4

    Better? Adopted Quill WYSIWYG Text Editor Check OTSNAME - News Admin Panel not implemented yet
  5. GhostWD

    [fmAAC][plugin] Get Power Gamers CRON

    this so called 'plugin' require running on Linux 1. EXECUTE DB QUERY { CREATE TABLE today_exp ( id int NOT NULL AUTO INCREMENT, exp int NOT NULL, player_id int, PRIMARY KEY (id), FOREIGN KEY (player_id) REFERENCES players(id) ); } 2. SET CRON...
  6. GhostWD

    [FMAAC] FlatMannerAAC MVC Symfony4

    Now im trying to make it work on linux xd it requires php7.2 to run(and download dependencies with composer) so you will need to install it and config to work with web server and modrewrite... i will make tutorial for now you can play with it on windows TO MODERATOR Can i have privagiles to...
  7. GhostWD

    [FMAAC] FlatMannerAAC MVC Symfony4

    FlatManner AAC Hello, I present to you my first project Automated Account Maker for OTS created with usage of Symfony4 which is MVC framework written in PHP It's using awesome feautures like templating system called Twig, Friendly-URL supported by Symfony Routing, ORM(Object-Relational...
  8. GhostWD

    TFS 0.X SQL Query to get item count in backpacks of id

    oh... maybe i have it SELECT pid, sid, COUNT(*) FROM player_items GROUP BY pid HAVING pid in (SELECT DISTINCT sid FROM player_items WHERE player_id = 2 AND itemtype IN (1987)) and pid > 99 but i will appreciate better attempt
  9. GhostWD

    TFS 0.X SQL Query to get item count in backpacks of id

    Hi OTLanders, I've got problem with making query that returns items count for backpacks of id what i need is getting pid of container, itemCount and correct itemtype I've used SELECT pid, COUNT(*) FROM player_items GROUP BY pid HAVING pid in (SELECT DISTINCT pid FROM player_items WHERE...
  10. GhostWD

    MySQL error on login

    yep its working right now i thought that 'id' column is not present in 'player_deaths' table by default but now i know that my server database update just erased it Thanks nihilist
  11. GhostWD

    MySQL error on login

    @Nihilist yep table is in db with columns player_id,date,level and i haven't got init.lua only start function onStartup() db.query("UPDATE `players` SET `online` = 0 WHERE `world_id` = " .. getConfigValue('worldId') .. ";") return true end btw. it's TFS 0.4
  12. GhostWD

    MySQL error on login

    bump
  13. GhostWD

    Fixing transform effect position.

    and? it changed that flood interval?
  14. GhostWD

    Fixing transform effect position.

    Lopas maybe try changing interval?
  15. GhostWD

    MySQL error on login

    I'm connected and I can login on account and char but when i login (connect) on char it prints that error in console
  16. GhostWD

    MySQL error on login

    Hi there! I've got problem when connecting to server it throws this error. SELECT `pk`.`player_id`, `pd`.`date` FROM `player_killers` pk LEFT JOIN `killers` k ON `pk`.`kill_id` = `k`.`id` LEFT JOIN `player_deaths` pd ON `k`.`death_id` = `pd`.`id` WHERE `pd`.`player_id` = 7530 AND...
  17. GhostWD

    What do I need to create a OTS from zero?

    scripts,right distro and time(and maybe some money if you want to make it run 24/7 on VPS for small project) :) VIDEO TUTORIAL: From nothing to a fully working OT server, website and shop system
  18. GhostWD

    Cross Compilation linux->windows?

    Hi there does anybody know how to compile OTC for windows on linux ? I was looking for some help and i found something in makefile to change variable to something like i686-w64-mingw32-gcc but i couldn't find that... With Regards, Ghost
Back
Top