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

Recent content by camman

  1. camman

    [ModernAAC ] Staff List Page

    Line 7 in your script is $SQL = >POT::getInstance()-getDBHandle(); It should be $SQL = POT::getInstance()->getDBHandle(); I'm not sure what happened there. Oh and also, your last line closes the php script with >? when it should be ?>. I'm not sure how that happened either. Are you using...
  2. camman

    [ModernAAC ] Staff List Page

    You have different access levels setup on your server. Message: Undefined index: 7 Is saying that it's trying to call $rank[7], which isn't declared in the beginning. So if you add something like this to the ranks it should work. //Ranks $rank[7]="Supreme God"; $rank[6]="God"...
  3. camman

    [ModernAAC ] Staff List Page

    @Barbyn; What version of TFS are you using?
  4. camman

    [ModernAAC ] Staff List Page

    This is a script that will show a list of all the staff on your server. It will show the player's rank (God/CM/etc.), their name, and if they are online or offline. Save this in /system/pages You could also use your admin panel to add it. <? // Staff List Page // by Camman (Cameron...
  5. camman

    Henkos's latest mapping works!

    I like it, but as others have said, it does look a little empty (esp. on the left side). I'm not quite sure what you could add... maybe some potted plants?
  6. camman

    Tax Rate NPC

    I'm working on creating a tax system for my OT. I'm trying to create the tax manager NPC now. I've already written rough draft functions to set the tax rate, and view & collect taxes. I just am unsure on how to go about making a NPC that will do this. Here's an example of what I would like it...
  7. camman

    (8.4 - MySqlSqlite) TFS Modified , New, Super :)

    phpMyAdmin thew me an error when I imported the MySQL database [code] SQL query: DELIMITER | CREATE TRIGGER `ondelete_accounts` BEFORE DELETE ON `accounts` FOR EACH ROW BEGIN DELETE FROM `bans` WHERE `account` = OLD.`id` ; MySQL said: Documentation #1064 - You have an error in your...
Back
Top