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

  1. Sliver

    Compiling Linux compiling problems

    I think he is using the default Make which automatically puts both flags in there. Try editing your Makefile and where is says: FLAGS = -D_THREAD_SAFE -D_REENTRANT -D__NO_HOMEDIR_CONF__ -D__ENABLE_SERVER_DIAGNOSTIC__ Change to: FLAGS = -D_THREAD_SAFE -D_REENTRANT -D__NO_HOMEDIR_CONF__...
  2. Sliver

    Linux Whosonline.php

    (This is me Talking Out Loud So Don't Implement) Hmm, isn't this for when the server starts up? Can I create an onLogout function? Something like: function onLogout(cid) db.query('UPDATE `players` SET `online` = 0 where `id` = "..getPlayerGUID(cid).."') return true end I found the code in...
  3. Sliver

    Linux Whosonline.php

    When a server crashes, I do believe on startup the server sets everyone's flag back to "0". So it would start fresh again and everyone that was marked as logged in would be placed as logged out. I've created a test server using the Revision Wraskley is using and it happens to my server also...
  4. Sliver

    Linux Whosonline.php

    what he is saying is when a player logs in, the online field in the Players table changes to a "1". However, when the players logout, that field doesn't not get changed to a "0". It stays a "1" so the whosonline.php from the website does a "select" statement looking for the "1" flag in the...
  5. Sliver

    Windows Password field box

    I know what you are trying to do. This Fieldset is within a PHP quote so this is what you are trying to do: echo'<form method="post" action="?subtopic=accountmanagement"> <fieldset> <span class="input-text"> <input name="account_login" value="Account Number" type="text"...
  6. Sliver

    [USA] [8.60-8.62] souls.forgeofelements.com [Non-PvP - Global map]

    You don't need the email address up there unless you don't know what you're doing. :P
  7. Sliver

    Modern AAC 1.0

    When viewing a character I get this error: Error: SQLSTATE[HY000]: General error: 2014 Cannot execute queries while other unbuffered queries are active. Consider using PDOStatement::fetchAll(). Alternatively, if your code is only ever going to run against mysql, you may enable query...
  8. Sliver

    Modern AAC 1.0

    Paxton/Stian- Have you noticed the extra "/" in the URL? Not sure if the best solution would be to take out the "/" from the config.php file, or fix the 'HTTP_HOST variable. Here is an example of what I'm talking about: http://WEBSITE//index.php/p/v/commands Current: $config['website'] =...
  9. Sliver

    [USA] Forgotten Kings 8.54-8.57 exp:999 stages PVP

    I did a google search on Amani monsters wanting to know what they were and found that they were on 2 other servers, 1 of the servers have been around for over a year so I'm assuming you took there ideas....and BTW your server is down. Can't get to your site it says "Unable to connect". You...
  10. Sliver

    [USA] Forgotten Kings 8.54-8.57 exp:999 stages PVP

    LOL, as soon as they learn to create there own monsters. I just noticed they copied monsters from another server. Couldn't you atleast change the names? Or do you know how?
  11. Sliver

    Fixed Paypal Script

    If you followed the original post of the Paypal script from Arti it included and .htaccess file which is placed in the ipn directory. No one should have access to the directory except for Paypal. When someone donates, Paypal send an IPN (Instant Payment Notification) to the address you set...
  12. Sliver

    Fixed Paypal Script

    Here is the updated ipn.php version that includes Logging of the account number and buyers email address: <? $mysql_host = 'localhost'; //Leave at localhost $mysql_user = 'root'; //DB User $mysql_pass = ''; //DB Pass $mysql_db = ''; //DB Name $file = 'paypal.log'; //Paypal Log...
  13. Sliver

    PayPal Script [RELEASE]

    I'm using TFS 2.3 with this exact ipn.php file and it works great. Here is the updated ipn.php version that includes Logging of the account number and buyers email address: <? $mysql_host = 'localhost'; //Leave at localhost $mysql_user = 'root'; //DB User $mysql_pass = ''; //DB Pass...
  14. Sliver

    Fixed Paypal Script

    Actually it was Artii and/or Gunz script. I just edited it...;)
  15. Sliver

    Fixed Paypal Script

    Thanks Chris! I've also created the ipn.php file to log all of the transactions so you can Ban the accounts that do chargebacks. Anyone interested?
Back
Top