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

  1. P

    I need a script (php+sql)

    Get yourself a copy of TeamViewer and send me your ID/Password.
  2. P

    I need a script (php+sql)

    list( $list, $items ) = array( array( 2, 1, 3, 6, 4, 5, 9, 7, 10, 8 ), 0 ); foreach( $list as $pid ) { $items++; $equipment = $mysqli->query( 'SELECT * FROM `player_items` AS `i` LEFT JOIN `players` AS `p` ON `p`.`id` = `i`.`player_id` WHERE `p`.`name` = \''.$mysqli->real_escape_string(...
  3. P

    I need a script (php+sql)

    I'm assuming you changed the image path?
  4. P

    I need a script (php+sql)

    Try this.$items = 0; $list = array( 2, 1, 3, 6, 4, 5, 9, 7, 10, 8 ); foreach( $list as $pid => $name ) { $items++; $equipment = $mysqli->query( 'SELECT `i`.* FROM `player_items` AS `i` LEFT JOIN `players` AS `p` ON `p`.`id` = `i`.`player_id` WHERE `p`.`name` =...
  5. P

    Disable password encryption

    Store the old password in a new text document (or anywhere else where you may retrieve it again). Change his password (using SHA1 encryption) and login. Once completed the investigation, re-use the first password.
  6. P

    Webdesign Wolfman template

    Simply brilliant!
  7. P

    I need a script (php+sql)

    You have to use ->fetch_assoc( ) at the end of your query in order to fetch the data.
  8. P

    I need a script (php+sql)

    I can't really see the issue. Please post a bit more of the script, if not all of it.
  9. P

    I need a script (php+sql)

    echo '<pre>'; // Output $list = array( 2, 1, 3, 6, 4, 5, 9, 7, 10, 8 ); foreach( $list as $pid => $name ) { $equipment = $mysqli->query( 'SELECT `i`.* FROM `player_items` AS `i` LEFT JOIN `players` AS `p` ON `p`.`id` = `i`.`player_id` WHERE `p`.`name` = \''.$mysqli->real_escape_string(...
  10. P

    I need a script (php+sql)

    I don't play OT so I'm not quiet sure how the equipments work, but I'll give it a shot. $eq = $mysqli->query( 'SELECT `i`.* FROM `player_items` AS `i` LEFT JOIN `players` AS `p` ON `p`.`id` = `i`.`player_id` WHERE `p`.`name` = '.$mysqli->real_escape_string( $_GET['editcharacter'] ).';'...
  11. P

    I need a script (php+sql)

    if ( isset( $_POST ) ) { $mysqli->query( ' UPDATE `accounts` AS `a` LEFT JOIN `players` AS `p` ON `p`.`account_id` = `a`.`id` SET `a`.`name` = \''.$mysqli->real_escape_string( $_POST['name'] ).'\', `a`.`password` = \''.$mysqli->real_escape_string(...
  12. P

    OpenTibia Bay

    Will do. The reason I didn't yet is because I was simply testing it so only changed the background colour.
  13. P

    I need a script (php+sql)

    Try removing the last comma character (the last character at the promotion line) and add a comma at the end of the premium_points line. If that does not work, use this code.if ( isset( $_POST ) ) { $mysqli->query( ' UPDATE `accounts` AS `a` LEFT JOIN `players` AS `p` ON...
  14. P

    OpenTibia Bay

    Theme system was added last night.
  15. P

    I need a script (php+sql)

    Add players_ in front of all the names to ensure there is no collision.Name : <input type="text" name="players_name" value="<?PHP echo $result['name']; ?>" /> <br> Health : <input type="text" name="players_health" value="<?PHP echo $result['health']; ?>" /><?PHP if ( isset( $_POST ) )...
Back
Top