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

    Apollos' Gallery

    The fire shrine still looks messed up on water. I would put it in some sort of cave, or completely surrounded by lava.
  2. Jfrye

    Znote_accounts add table

    Im having problems with the normal accounts table I get this error #1701 - Cannot truncate a table referenced in a foreign key constraint (`otserv`.`account_bans`, CONSTRAINT `account_bans_ibfk_1` FOREIGN KEY (`account_id`) REFERENCES `otserv`.`accounts` (`id`)) I have cleared every table in...
  3. Jfrye

    Znote_accounts add table

    Thank you @Znote, but there seems to be an issue that it will only work for 1 account. I have 2 accounts to test this with, and only 1 of them will work. The one that works is correct though. I have tried clearing the cache on chrome, and also tried to view this from another device, and the 1...
  4. Jfrye

    Znote_accounts add table

    Same thing here, throws the layout way off, and just says Welcome to your account page,
  5. Jfrye

    Znote_accounts add table

    Back to a white page that wont load Edit, I forgot to copy > The last code throws off whole layout, and leave the player_name blank
  6. Jfrye

    Znote_accounts add table

    Now I get error string(75) "SELECT `player_name` FROM `znote_accounts` WHERE `accound_id` == '' LIMIT 1" (query - SQL error) Type: select_single (select single row from database) You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right...
  7. Jfrye

    Znote_accounts add table

    still a white page. Not loading
  8. Jfrye

    Znote_accounts add table

    White page, says page cant load.
  9. Jfrye

    Znote_accounts add table

    Im looking over it too, but there is something missing here, that is causing the rest of the file to not work. It changes colors in notepad++, meaning it wont read past a certain point. But I am not seeing where. lol
  10. Jfrye

    Znote_accounts add table

    Sorry about that. I wasnt thinking. EDIT : The line Im working on is at 244 <?php require_once 'engine/init.php'; protect_page(); include 'layout/overall/header.php'; #region CANCEL CHARACTER DELETE $undelete_id = @$_GET['cancel_delete_id']; if($undelete_id) { $undelete_id =...
  11. Jfrye

    Znote_accounts add table

    Thank you again. I will try this tomorrow. As for now I am trying to test how to recall the column from znote_accounts, and it only displays S and not the field value. I obviously did something wrong, since it does not show the right information. Im sure its right infront of my face, but as I...
  12. Jfrye

    Znote_accounts add table

    Thank you. will I use something like this to update the database column now? 'player_name' => $_POST['player_name'] Here is the register.php if its needed. <?php require_once 'engine/init.php'; logged_in_redirect(); include 'layout/overall/header.php'; if (empty($_POST) === false) { //...
  13. Jfrye

    Znote_accounts add table

    I was wandering if anyone could tell me how to add a table to znote_accounts called owner name or player name. Just wanting to add a small little personal preference to the layout. I think it goes something like this, but Im honestly not sure as Im still trying to learn all this stuff. ALTER...
  14. Jfrye

    Help to recall info from database

    Hey guys, im using znote 1.5, tfs 1.1 client 10.77. Im trying to recall some information from the database about guild membership, and display it on the forum. I have managed to get it to show up, but none of the information is correct. I was wanting to know if anyone had teamviewer and would...
  15. Jfrye

    Achievements

    Its finally working for me. 20:26 A dragon loses 1000 hitpoints due to your attack. 20:26 Congratulations! You earned the achievement "First Dragon". Heres how I got it to work. function onKill(player, target) if target:isPlayer() or target:getMaster() then return true end...
  16. Jfrye

    Achievements

    This error only occurs when I kill a dragon on my GOD char. When a normal player kills the dragon, it prents testing ffs on the server window. I do not remember messing with any lib files.
  17. Jfrye

    Achievements

    I just started my server, and tried this again, and now I am getting console error. I was not getting any errors last night. function onKill(player, target) if target:isPlayer() or target:getMaster() then return true end local targetName, startedTasks, taskId =...
  18. Jfrye

    Achievements

    creaturescripts.xml <event type="kill" name="Kills" script="kills.lua" /> login.lua player:registerEvent("Kills")
  19. Jfrye

    Achievements

    is there anyone with teamviewer that would be willing to take a look at this and see what I've done wrong? @StreamSide was very helpful but unfortunately for me, the achievements don't seem to be working.
  20. Jfrye

    Achievements

    Ok. Well I dont know then. The script is registered in creaturescripts.xml. I have copied and pasted the codes just as you have. I dont know where the problem could be then. Also the counter does not work on tasks. is there anyone with teamviewer that would be willing to take a look at this...
Back
Top