Jump to content

InsideGamer

Members
  • Posts

    4
  • Joined

  • Last visited

Everything posted by InsideGamer

  1. We currently have a mega sale at BuSign I.S. Automation. 3 months for 2 euros per month! ( 32 slots ). We are not an budget host, we have decent prizes for great quality and service. We host many great and big MTA servers like DDC and SAUR. Link and instructions to take the offer: viewtopic.php?f=116&t=31678&start=15#p481002 Watch the topic also for reviews. The website is in dutch (working on english one), control panel is self made and in English. We have own servers, no rentals. We hire an part of an datacenter in Holland, with 2x 1000Mbit up- and downlink. You can contact us by email, phone and tickets. Let us know what you think.
  2. Mega sale @ BuSign I.S. Order now an MTA game server (32 slots) for only 2,00 euros per month, the first 3 months! The price is incl. VAT! Order now, before it's too late! Every server has it's own FastDL url for FREE! Step 1: Register at https://www.hcp.busign.nl/ Step 2: Order your MTA Server via https://www.hcp.busign.nl/order/ (Product: Mega sale - MTA:SA (32 slots)) Step 3: Pay your order via PayPal or iDEAL, if you want to pay via other ways, contact us at [email protected] Step 4: Wait one minute (let the HCPanel install your server), Start MTA and start playing!! Remember: You need to extend your product each month. After three months you pay 5,49 EUR, if you extend your product. BuSign is not a budget host. We guarantee an uptime of 99,999% per month! No overselling. All MTA servers have an uplink of 1000Mbit per second and a real time VNC console.
  3. BuSign exists for over 5 years now i believe. They are located in The Netherlands. You'll need to contact them via [email protected] (Dutch and English) to order a gameserver, their control panel is broken, they are making a new one which will be released within one week, i believe. The support is great, they help me with everything, even if i deleted all of my resources. Also, they promised me that the new control panel has an live vnc console for gameservers, can't wait to see it! P.s. Oh, i'm customer for almost a year now, my freeroam server: 178.21.21.23:22061
  4. If i may make an suggestion: Change the function "call" in php_sdk.php to: function call ( $function ) { $val = func_get_args ( ); array_shift ( $val ); // Remove $function parameter. return $this->server->callFunction ( $this->name, $function, $val ); } Also, please don't place vars within quotes, it's old, and it will be blocked in the future, like ex: echo "$array['hello']";, this can be fixed by using brackets: { }, as you do now, but please, use the right php syntax like this: // Bad: throw new Exception( "Unable to send request to {$host}:{$port}" ); // Good: throw new Exception ( 'Unable to send request to ' . $host . ':' . $port ); // echo example: echo 'Welcome back ' . $playername; P.s. also use the correct syntax for mysql query's: mysql_query ( "SELECT fieldname FROM table WHERE id = '1' LIMIT 1" ); // This is the correct use of the quotes, as it ment to be. ----- For the users of this script: * Please build in mysql error handling, so you know whats wrong! * Set the right indexes in the database table. (If you don't: your database and mta server will lag very badly! (if you have more then 5000 rows in an table)) * Keep in mind: Mysql injection! Use http://us.php.net/mysql_real_escape_string * Choose the right characterset for your database and tables, otherwise characters like ö won't work. P.s. Max 2 code blocks? Hmmm... Happy coding!
×
×
  • Create New...