Ignore:
Timestamp:
Aug 13, 2007, 9:05:34 PM (17 years ago)
Author:
george
Message:

Aktualizace MaNGOS Minimanageru na verzi 0.1.4a.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • minimanager/pomm_public/pomm_lib.php

    r5 r19  
    1111require_once("../scripts/config.php");
    1212require_once("../scripts/global_lib.php");
    13 require_once("../scripts/mysql.php");
     13require_once("../scripts/db_layer.php");
    1414require_once("../scripts/get_lib.php");
    1515
     
    2323
    2424if ( !ini_get('session.auto_start') ) session_start();
    25 $realm_id = 1; //$_SESSION['realm_id'];
    26 $user_lvl = 0; //$_SESSION['user_lvl'];
    27 $user_id = 1; //$_SESSION['user_id'];
    28 
    29 function get_player_position($x,$y,$map) {
    30  global $zone_530;
    31 
     25$realm_id = 1; // $_SESSION['realm_id'];
     26$user_lvl = 0; // $_SESSION['user_lvl'];
     27$user_id = 1; // $_SESSION['user_id'];
     28
     29function get_player_position($x,$y,$map,$zone) {
    3230 $xpos = round(($x / 1000)*17.7,0);
    3331 $ypos = round(($y / 1000)*17.7,0);
     
    4341       
    4442        case 530:
    45         $zone_id = 0;
    46         for ($i=0; $i < count($zone_530); $i++)
    47                 if (($zone_530[$i][2] < $x) && ($zone_530[$i][3] > $x) && ($zone_530[$i][1] < $y) && ($zone_530[$i][0] > $y)){
    48                         $zone_id =  $zone_530[$i][5];
    49                         break;
    50                         }
    51         if (($zone_id == 3525) || ($zone_id == 3557) || ($zone_id == 3524)){
     43        if (($zone == 3525) || ($zone == 3557) || ($zone == 3524)){
    5244                $pos['x'] = -162 - $ypos;
    5345                $pos['y'] = 75 - $xpos;
    54         } else if (($zone_id == 3487) || ($zone_id == 3433) || ($zone_id == 3430)){
     46        } else if (($zone == 3487) || ($zone == 3433) || ($zone == 3430)){
    5547                                $pos['x'] = 528 - $ypos;
    5648                                $pos['y'] = 218 - $xpos;
Note: See TracChangeset for help on using the changeset viewer.