• 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

    [PHP] Top Guilds wont show

    are u tr use this : <?PHP $main_content .= '<div style="text-align: center; font-weight: bold;"><h2>Top 15 guilds on ' . $config['server']['serverName'] . '</h2></div> <center><table border="0" cellspacing="1" cellpadding="4" width="80%"> <tr...
  2. C

    [PHP] Top Guilds wont show

    try this try this <?PHP $main_content .= '<div style="text-align: center; font-weight: bold;"><h2>Top 15 guilds on ' . $config['server']['serverName'] . '</h2></div> <center><table border="0" cellspacing="1" cellpadding="4" width="80%"> <tr> <td width="10%">Pos</td> <td...
  3. C

    [PHP] Top Guilds wont show

    post your topguilds.php
  4. C

    [PHP] Top Guilds wont show

    Ok listen open your index.php and search: <?PHP //start :) and added ini_set( 'display_errors', 1 ); ........ <?PHP //start :) ini_set( 'display_errors', 1 ); Now reload your website enter to topguilds and give me what error give
  5. C

    Problem with creating guilds on website. Znote ACC

    You have same problem? What version Znote are you using?
  6. C

    Problem with creating guilds on website. Znote ACC

    try this http://pastebin.com/tD6qFyr3
  7. C

    [PHP] Top Guilds wont show

    are you using gesior?
  8. C

    Problem with creating guilds on website. Znote ACC

    post your guilds.php
  9. C

    [Mysql] save account problem

    You need use mysql ,i think don't follow step for step to added vvip system and get Error On getvipdays
  10. C

    [Mysql] save account problem

    why u use sqlite.sql ? is bad
  11. C

    Lua (Help!)Last Man Standing Event Problem!

    this scripts is the same use for 0.3? why in 1.0 all changed.
  12. C

    How to update RME with test server sprites

    You want added your sprites to RME?
  13. C

    Solved error on my server can anyone help me

    You don't added vipdays query in SQL: enter phpmyadmin / SQL and execute: ALTER TABLE `accounts` ADD `vipdays` int(11) NOT NULL DEFAULT 0;
  14. C

    [Mysql] save account problem

    Yes.. try remove your column and added again ,how you need enter SQL Use - Structure in Players.. and search your vipdays (put in X) to remove and remove. and back added your vipdays (Query exactly) ALTER TABLE `players` ADD `vipdays` int(11) NOT NULL DEFAULT 0;
  15. C

    Furniture Bug on TFS 0.4 and 0.3.7 ( any help ) ?

    I think you have bad items.xml On your Decay to try search ItemID your item 6114 and look what say or paste your items.xml in http://pastebin.com/ and give me your link
  16. C

    [Mysql] save account problem

    how you have added in your globalevents.xml the script ,I test and works fine
  17. C

    [Mysql] save account problem

    are you have query added on your phpmyadmin ALTER TABLE `players` ADD `vipdays` int(11) NOT NULL DEFAULT 0;
  18. C

    [Mysql] save account problem

    You script it works are you sure have added in your 050-functions ,the functions getPlayerVipDays ? post your 050-functions data/lib/050-functions.lua
  19. C

    [Mysql] save account problem

    Ohhh!! what version TFS are you using
  20. C

    [Mysql] save account problem

    try added function on your script change vipeffect for 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...
Back
Top