Jump to content
  • 0

Problema sistem de turfs


Jimmi

Question

Problema intalnita (descriere):A incercat The Row sa imi faca sistemul de turf-uri dar a trebuit sa iasa....Imi da erori pe care habar nu am cum sa le rezolv
Ero(area / rile) / warning-(ul / urile):

C:\Users\Jimmi\Desktop\93.119.25.182-7777\gamemodes\RunStrike.pwn(1471) : error 025: function heading differs from prototype
C:\Users\Jimmi\Desktop\93.119.25.182-7777\gamemodes\RunStrike.pwn(22358) : error 017: undefined symbol "WarWon"
C:\Users\Jimmi\Desktop\93.119.25.182-7777\gamemodes\RunStrike.pwn(22359) : error 017: undefined symbol "WarWon"
C:\Users\Jimmi\Desktop\93.119.25.182-7777\gamemodes\RunStrike.pwn(22363) : error 017: undefined symbol "turf"
C:\Users\Jimmi\Desktop\93.119.25.182-7777\gamemodes\RunStrike.pwn(22363) : warning 215: expression has no effect
C:\Users\Jimmi\Desktop\93.119.25.182-7777\gamemodes\RunStrike.pwn(22363) : error 001: expected token: ";", but found "]"
C:\Users\Jimmi\Desktop\93.119.25.182-7777\gamemodes\RunStrike.pwn(22363) : error 029: invalid expression, assumed zero
C:\Users\Jimmi\Desktop\93.119.25.182-7777\gamemodes\RunStrike.pwn(22363) : fatal error 107: too many error messages on one line

Liniile de cod / sursa / script-ul(obligatoriu):

UpdateGangZone( const zoneID )
{
	new szString[ 128 ], z_id = zoneID - 1;
	GZ_DATA[ z_id ][ zColor ] = ( WarWon == 5 ) ? ( COLOR_CHICHAGOFF ) : ( WarWon == 6 ) ? ( COLOR_SMINIONA ) : ( WarWon == 12 ) ? ( COLOR_FORLENZAFF ) : ( COLOR_ZALUCHIFF );
	GZ_DATA[ z_id ][ zOwner ] = WarWon;
	GZ_DATA[ z_id ][ zOwned ] = 1;
	for( new i = 0; i < MAX_PLAYERS; i++ ) {
	    if( !IsPlayerConnected( i ) ) continue;
	    if( turf[ i ] != 0 ){
			GangZoneHideForPlayerEx( i, GZ_DATA[ z_id ][ zID ] );
		 	GangZoneShowForPlayerEx( i, GZ_DATA[ z_id ][ zID ], GZ_DATA[ z_id ][ zColor ] );
		}
	}
	format( szString, 128, "UPDATE `zones` SET `Color` = %d, `Owner` = %d, `Owned` = %d WHERE `ID` = %d", GZ_DATA[ z_id ][ zColor ], GZ_DATA[ z_id ][ zOwner ], GZ_DATA[ z_id ][ zOwned ], zoneID );
	mysql_query( szString );
    return 1;
}

Imagini / Video (optional):http://imgur.com/uwCbv6y
Ati incercat sa rezolvati singur?:Da am adaugat new WarWon si turfs dar da alte erori...

Link to comment
Share on other sites

Recommended Posts

  • 0

Pentru aceste warn-uri :

C:\Users\Jimmi\Desktop\93.119.25.182-7777\gamemodes\RunStrike.pwn(22358) : error 017: undefined symbol "WarWon"
C:\Users\Jimmi\Desktop\93.119.25.182-7777\gamemodes\RunStrike.pwn(22359) : error 017: undefined symbol "WarWon"
C:\Users\Jimmi\Desktop\93.119.25.182-7777\gamemodes\RunStrike.pwn(22363) : error 017: undefined symbol "turf"

Tu nu ai definit acele variabile. La inceputul gamemode-ului  le definesti astfel:

#define WarWon
#define turf

Si arata linia :

1471
Link to comment
Share on other sites

  • 0

Acolo trebuie

new WarWon, turf[MAX_PLAYERS];

Cred ca s-a gandit sa tina minte in variabile de tip intreg informatii despre ce s-a intamplat asta legat de WarWon.

Iar la variabila turf cred ca retine cine are zonele de gang afisate pe ecran, asta vad in codul tau de mai sus. (adica presupun)

 

Ce ti-am dat eu adaugi la inceputul gamemode-ului.

Poti sa ne arati cum ai functia Trufss cand ii faci forward?

Link to comment
Share on other sites

  • 0

public Turfss( const playerid )
{
    for( new i = 0; i < sizeof( GZ_DATA ); i++ ){
        if( turfs[ playerid ] == 1 ) {
            GangZoneShowForPlayerEx( playerid, GZ_DATA[ i ][ zID ], GZ_DATA[ i ][ zColor ] );
        }
        else {
            GangZoneHideForPlayerEx( playerid, GZ_DATA[ i ][ zID ] );
        }
    }
    return 1;
}
Link to comment
Share on other sites

  • 0

Modifica linia 1460 in felul urmator:

public Turfss(i)

Iar la :

GangZoneShowForPlayerEx

Pune in loc de acel playerid in urmatorul fel la cele 2 GangZoneShowForPlayerEx:

GangZoneShowForPlayerEx( i,

Iar la linia 1463 pune in acest fel:

        if( turfs[ i ] == 1 ) {

Astept reply.

Link to comment
Share on other sites

  • 0

Asa ar trebuii asa sa arate callback-ul tau:

public Turfss(i){
    for( new zID= 0; zID < sizeof( GZ_DATA ); zID++ ){
        if( turfs[ i ] == 1 ) GangZoneShowForPlayerEx( i, GZ_DATA[ zID ], GangZoneColor[ zID ] );
            else GangZoneHideForPlayerEx( i, GZ_DATA[ zID ] );
   }
    return 1;
}

 

Edited by Reflex
Link to comment
Share on other sites

  • 0

Defapt nu

C:\Users\Jimmi\Desktop\93.119.25.182-7777\gamemodes\RunStrike.pwn(1448) : warning 219: local variable "zID" shadows a variable at a preceding level
C:\Users\Jimmi\Desktop\93.119.25.182-7777\gamemodes\RunStrike.pwn(1448) : warning 213: tag mismatch
C:\Users\Jimmi\Desktop\93.119.25.182-7777\gamemodes\RunStrike.pwn(1448) : warning 206: redundant test: constant expression is non-zero
C:\Users\Jimmi\Desktop\93.119.25.182-7777\gamemodes\RunStrike.pwn(1448) : error 022: must be lvalue (non-constant)
C:\Users\Jimmi\Desktop\93.119.25.182-7777\gamemodes\RunStrike.pwn(1449) : error 035: argument type mismatch (argument 2)
C:\Users\Jimmi\Desktop\93.119.25.182-7777\gamemodes\RunStrike.pwn(1450) : error 035: argument type mismatch (argument 2)
C:\Users\Jimmi\Desktop\93.119.25.182-7777\gamemodes\RunStrike.pwn(1448) : warning 204: symbol is assigned a value that is never used: "zID"
C:\Users\Jimmi\Desktop\93.119.25.182-7777\gamemodes\RunStrike.pwn(1448 -- 1452) : warning 225: unreachable code

 

Link to comment
Share on other sites

  • 0

UP mi-a rezolvat Wopss impreuna cu NoNamed erorile dar nu citeste turfs..

stock LoadGangZones( ){
     new rows, szResult[ 50 ];
    mysql_query( "SELECT * FROM `gangzones`" );
    mysql_store_result( );
    rows = mysql_num_rows( );
    for( new i = 0; i < rows; i++ ){
        mysql_get_field( "Owned", szResult );           GZ_DATA[ i ][ zOwned ] = strval( szResult );
        mysql_get_field( "Owner", szResult );           GZ_DATA[ i ][ zOwner ] = strval( szResult );
        mysql_get_field( "Color", szResult );           GZ_DATA[ i ][ zColor ] = strval( szResult );
        mysql_get_field( "MinX", szResult );            GZ_DATA[ i ][ zMinX ] = floatstr( szResult );
        mysql_get_field( "MinY", szResult );            GZ_DATA[ i ][ zMinY ] = floatstr( szResult );
        mysql_get_field( "MaxX", szResult );            GZ_DATA[ i ][ zMaxX ] = floatstr( szResult );
        mysql_get_field( "MaxY", szResult );            GZ_DATA[ i ][ zMaxY ] = floatstr( szResult );
        GZ_DATA[ i ][ zID ] = GangZoneCreateEx( GZ_DATA[ i ][ zMinX ], GZ_DATA[ i ][ zMinY ], GZ_DATA[ i ][ zMaxX ], GZ_DATA[ i ][ zMaxY ], i + 1, 1.0 );
    }
    mysql_free_result( );
    printf( "[TURFS]Au fost incarcate %d zone.Felicitari pentru reusita.[PG-ZONE.RO]", rows );
    return 1;
}
 
si
public UpdateGangZone(i)
{
    new szString[ 128 ], z_id = zoneID - 1;
    if(WarWon == 5)
    {
        GZ_DATA[ z_id ][ zColor ] = COLOR_CHICHAGOFF;
        return 1;
    }
    else if (WarWon == 6)
    {
        GZ_DATA[ z_id ][ zColor ] = COLOR_SMINIONA;
         return 1;
    }
    else if(WarWon == 12)
    {
         GZ_DATA[ z_id ][ zColor ] = COLOR_FORLENZAFF;
         return 1;
    }
    else if(WarWon == 13)
    {
         GZ_DATA[ z_id ][ zColor ] = COLOR_ZALUCHIFF;
         return 1;
    }
    GZ_DATA[ z_id ][ zOwner ] = WarWon;
    GZ_DATA[ z_id ][ zOwned ] = 1;
    for(new x; x < MAX_PLAYERS; x++)
    {
        if(!IsPlayerConnected(i)) continue;
        if( turf[ i ] != 0 )
        {
            GangZoneHideForPlayerEx( i, GZ_DATA[ z_id ][ zID ] );
            GangZoneShowForPlayerEx( i, GZ_DATA[ z_id ][ zID ], GZ_DATA[ z_id ][ zColor ] );
        }
    }
    format( szString, 128, "UPDATE `gangzones` SET `Color` = %d, `Owner` = %d, `Owned` = %d WHERE `ID` = %d", GZ_DATA[ z_id ][ zColor ], GZ_DATA[ z_id ][ zOwner ], GZ_DATA[ z_id ][ zOwned ], zoneID );
    mysql_query( szString );
    return 1;
}
 
asa apare in mysql_log

http://pastebin.com/z1CiXria

 

baza de date refacuta

-- phpMyAdmin SQL Dump
-- version 4.1.14.8
-- http://www.phpmyadmin.net
--
-- Host: 93.119.26.250:3306
-- Generation Time: 19 Iul 2015 la 07:31
-- Server version: 5.5.39-36.0-log
-- PHP Version: 5.4.36
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
--
-- Database: `zp_hid6506`
--
-- --------------------------------------------------------
--
-- Structura de tabel pentru tabelul `gangzones`
--
CREATE TABLE IF NOT EXISTS `gangzones` (
  `ID` int(11) NOT NULL AUTO_INCREMENT,
  `Owned` int(11) NOT NULL,
  `Owner` int(11) NOT NULL,
  `Hours` int(11) NOT NULL,
  `Color` float NOT NULL,
  `MinX` varchar(16) CHARACTER SET latin1 COLLATE latin1_general_ci NOT NULL DEFAULT '0',
  `MinY` varchar(16) CHARACTER SET latin1 COLLATE latin1_general_ci NOT NULL DEFAULT '0',
  `MaxX` varchar(16) CHARACTER SET latin1 COLLATE latin1_general_ci NOT NULL DEFAULT '0',
  `MaxY` varchar(16) CHARACTER SET latin1 COLLATE latin1_general_ci NOT NULL DEFAULT '0',
  PRIMARY KEY (`ID`)
) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=49 ;
--
-- Salvarea datelor din tabel `gangzones`
--
INSERT INTO `gangzones` (`ID`, `Owned`, `Owner`, `Hours`, `Color`, `MinX`, `MinY`, `MaxX`, `MaxY`) VALUES
(1, 0, 12, 0, 0, '114.21', '-1364.93', '506.54', '-912.91'),
(2, 0, 12, 0, 0, '506.54', '-1364.93', '899.25', '-912.91'),
(3, 0, 12, 0, 0, '899.25', '-1313.70', '1313.58', '-912.91'),
(4, 0, 12, 0, 0, '1313.58', '-1364.93', '1727.49', '-912.91'),
(5, 0, 12, 0, 0, '1727.49', '-1364.93', '2108.13', '-912.91'),
(6, 0, 12, 0, 0, '2108.13', '-1364.93', '2499.38', '-912.91'),
(7, 0, 12, 0, 0, '2499.38', '-1313.70', '2916.17', '-912.91'),
(8, 0, 12, 0, 0, '114.21', '-1821.03', '506.54', '-1364.93'),
(9, 0, 12, 0, 0, '506.54', '-1821.03', '899.25', '-1364.93'),
(10, 0, 12, 0, 0, '899.25', '-1721.90', '1313.58', '-1313.70'),
(11, 0, 12, 0, 0, '1313.58', '-1821.03', '1727.49', '-1364.93'),
(12, 0, 12, 0, 0, '1727.49', '-1821.03', '2108.13', '-1364.93'),
(13, 0, 12, 0, 0, '2108.13', '-1821.03', '2499.38', '-1364.93'),
(14, 0, 12, 0, 0, '2499.38', '-1737.65', '2916.17', '-1313.70'),
(15, 0, 12, 0, 0, '899.25', '-2131.32', '1313.58', '-1721.90'),
(16, 0, 12, 0, 0, '899.25', '-2489.99', '1313.58', '-2131.32'),
(17, 0, 12, 0, 0, '1313.58', '-2250.92', '1727.49', '-1821.03'),
(18, 0, 12, 0, 0, '1727.49', '-2250.92', '2108.13', '-1821.03'),
(19, 0, 12, 0, 0, '2108.13', '-2250.92', '2499.38', '-1821.03'),
(20, 0, 12, 0, 0, '2499.38', '-2172.41', '2916.17', '-1737.65'),
(21, 0, 12, 0, 0, '1313.58', '-2690.47', '1727.49', '-2250.92'),
(22, 0, 12, 0, 0, '1727.49', '-2690.47', '2108.13', '-2250.92'),
(23, 0, 12, 0, 0, '2108.13', '-2690.47', '2499.38', '-2250.92'),
(24, 0, 12, 0, 0, '2499.38', '-2567.91', '2916.17', '-2172.41'),
(25, 0, 12, 0, 0, '1114.47', '2444.49', '1478.16', '2901.03'),
(26, 0, 12, 0, 0, '1478.16', '2444.49', '1828.16', '2901.03'),
(27, 0, 12, 0, 0, '1828.16', '2444.49', '2150.16', '2901.03'),
(28, 0, 12, 0, 0, '2150.16', '2444.49', '2528.16', '2901.03'),
(29, 0, 12, 0, 0, '2528.16', '2444.49', '2878.16', '2901.03'),
(30, 0, 12, 0, 0, '901.16', '1980.34', '1307.16', '2444.49'),
(31, 0, 12, 0, 0, '1307.16', '1980.34', '1677.16', '2444.49'),
(32, 0, 12, 0, 0, '1677.16', '1980.34', '2076.16', '2444.49'),
(33, 0, 12, 0, 0, '2076.16', '1980.34', '2482.00', '2444.49'),
(34, 0, 12, 0, 0, '2482.00', '1980.34', '2878.16', '2444.49'),
(35, 0, 12, 0, 0, '901.16', '1528.09', '1307.16', '1980.34'),
(36, 0, 12, 0, 0, '1307.16', '1528.09', '1677.16', '1980.34'),
(37, 0, 12, 0, 0, '1677.16', '1528.09', '2076.16', '1980.34'),
(38, 0, 12, 0, 0, '2076.16', '1528.09', '2482.00', '1980.34'),
(39, 0, 12, 0, 0, '2482.00', '1528.09', '2878.16', '1980.34'),
(40, 0, 12, 0, 0, '901.16', '1074.90', '1307.16', '1528.09'),
(41, 0, 12, 0, 0, '1307.16', '1074.90', '1677.16', '1528.09'),
(42, 0, 12, 0, 0, '1677.16', '1074.90', '2076.16', '1528.09'),
(43, 0, 12, 0, 0, '2076.16', '1074.90', '2482.00', '1528.09'),
(44, 0, 12, 0, 0, '2482.00', '1074.90', '2878.16', '1528.09'),
(45, 0, 12, 0, 0, '1307.16', '663.83', '1677.16', '1074.90'),
(46, 0, 12, 0, 0, '1677.16', '663.83', '2076.16', '1074.90'),
(47, 0, 12, 0, 0, '2076.16', '663.83', '2482.00', '1074.90'),
(48, 0, 12, 0, 0, '2482.00', '663.83', '2878.16', '1074.90');
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
 
Edited by jimmi
Link to comment
Share on other sites

  • 0

Cand am cautat in gm doar aici vad

public OnGameModeInit()
{
    AntiDeAMX();
    WarScore1 = 0;
    WarScore2 = 0;
    WarMan1 = 999;
    WarMan2 = 999;
    ConnectMySQL();
    mysql_debug(1);
    LoadGangZones( );[code]
Link to comment
Share on other sites

  • 0

La fel

[23:22:08] CMySQLHandler::Query(SELECT * FROM `gangzones`) - Successfully executed.
[23:22:08] >> mysql_store_result( Connection handle: 1 )
[23:22:08] CMySQLHandler::StoreResult() - Result was stored.
[23:22:08] >> mysql_num_rows( Connection handle: 1 )
[23:22:08] CMySQLHandler::NumRows() - Returned 48 row(s)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owned) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owner) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Color) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owned) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owner) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Color) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owned) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owner) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Color) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owned) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owner) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Color) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owned) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owner) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Color) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owned) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owner) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Color) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owned) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owner) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Color) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owned) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owner) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Color) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owned) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owner) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Color) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owned) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owner) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Color) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owned) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owner) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Color) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owned) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owner) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Color) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owned) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owner) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Color) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owned) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owner) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Color) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owned) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owner) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Color) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owned) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owner) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Color) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owned) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owner) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Color) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owned) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owner) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Color) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owned) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owner) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Color) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owned) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owner) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Color) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owned) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owner) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Color) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owned) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owner) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Color) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owned) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owner) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Color) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owned) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owner) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Color) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owned) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owner) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Color) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owned) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owner) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Color) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owned) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owner) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Color) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owned) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owner) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Color) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owned) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owner) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Color) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owned) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owner) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Color) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owned) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owner) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Color) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owned) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owner) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Color) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owned) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owner) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Color) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owned) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owner) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Color) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owned) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owner) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Color) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owned) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owner) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Color) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owned) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owner) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Color) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owned) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owner) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Color) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owned) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owner) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Color) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owned) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owner) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Color) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owned) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owner) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Color) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owned) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owner) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Color) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MinY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(MaxY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:08] CMySQLHandler::FetchField(Owned) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:08] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:09] CMySQLHandler::FetchField(Owner) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:09] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:09] CMySQLHandler::FetchField(Color) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:09] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:09] CMySQLHandler::FetchField(MinX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:09] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:09] CMySQLHandler::FetchField(MinY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:09] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:09] CMySQLHandler::FetchField(MaxX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:09] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:09] CMySQLHandler::FetchField(MaxY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:09] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:09] CMySQLHandler::FetchField(Owned) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:09] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:09] CMySQLHandler::FetchField(Owner) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:09] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:09] CMySQLHandler::FetchField(Color) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:09] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:09] CMySQLHandler::FetchField(MinX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:09] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:09] CMySQLHandler::FetchField(MinY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:09] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:09] CMySQLHandler::FetchField(MaxX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:09] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:09] CMySQLHandler::FetchField(MaxY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:09] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:09] CMySQLHandler::FetchField(Owned) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:09] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:09] CMySQLHandler::FetchField(Owner) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:09] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:09] CMySQLHandler::FetchField(Color) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:09] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:09] CMySQLHandler::FetchField(MinX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:09] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:09] CMySQLHandler::FetchField(MinY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:09] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:09] CMySQLHandler::FetchField(MaxX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:09] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:09] CMySQLHandler::FetchField(MaxY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:09] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:09] CMySQLHandler::FetchField(Owned) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:09] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:09] CMySQLHandler::FetchField(Owner) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:09] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:09] CMySQLHandler::FetchField(Color) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:09] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:09] CMySQLHandler::FetchField(MinX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:09] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:09] CMySQLHandler::FetchField(MinY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:09] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:09] CMySQLHandler::FetchField(MaxX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:09] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:09] CMySQLHandler::FetchField(MaxY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:09] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:09] CMySQLHandler::FetchField(Owned) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:09] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:09] CMySQLHandler::FetchField(Owner) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:09] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:09] CMySQLHandler::FetchField(Color) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:09] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:09] CMySQLHandler::FetchField(MinX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:09] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:09] CMySQLHandler::FetchField(MinY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:09] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:09] CMySQLHandler::FetchField(MaxX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:09] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:09] CMySQLHandler::FetchField(MaxY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:09] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:09] CMySQLHandler::FetchField(Owned) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:09] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:09] CMySQLHandler::FetchField(Owner) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:09] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:09] CMySQLHandler::FetchField(Color) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:09] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:09] CMySQLHandler::FetchField(MinX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:09] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:09] CMySQLHandler::FetchField(MinY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:09] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:09] CMySQLHandler::FetchField(MaxX) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:09] >> mysql_fetch_field_row( Connection handle: 1 )
[23:22:09] CMySQLHandler::FetchField(MaxY) - You cannot call this function now. (Reason: Fields/Rows are empty.)
[23:22:09] >> mysql_free_result( Connection handle: 1 )
[23:22:09] CMySQLHandler::FreeResult() - Result was successfully free'd.
[23:22:09] >> mysql_query( Connection handle: 1 )
 
dar vad ca update face corect
[23:22:13] CMySQLHandler::Query(UPDATE `gangzones` SET `Hours` = 0 WHERE `ID` = 1 LIMIT 1;) - Successfully executed.
[23:22:13] >> mysql_query( Connection handle: 1 )
[23:22:13] CMySQLHandler::Query(UPDATE `gangzones` SET `Hours` = 0 WHERE `ID` = 2 LIMIT 1;) - Successfully executed.
[23:22:13] >> mysql_query( Connection handle: 1 )
[23:22:13] CMySQLHandler::Query(UPDATE `gangzones` SET `Hours` = 0 WHERE `ID` = 3 LIMIT 1;) - Successfully executed.
[23:22:13] >> mysql_query( Connection handle: 1 )
[23:22:13] CMySQLHandler::Query(UPDATE `gangzones` SET `Hours` = 0 WHERE `ID` = 4 LIMIT 1;) - Successfully executed.
[23:22:13] >> mysql_query( Connection handle: 1 )
[23:22:13] CMySQLHandler::Query(UPDATE `gangzones` SET `Hours` = 0 WHERE `ID` = 5 LIMIT 1;) - Successfully executed.
[23:22:13] >> mysql_query( Connection handle: 1 )
[23:22:13] CMySQLHandler::Query(UPDATE `gangzones` SET `Hours` = 0 WHERE `ID` = 6 LIMIT 1;) - Successfully executed.
[23:22:13] >> mysql_query( Connection handle: 1 )
[23:22:13] CMySQLHandler::Query(UPDATE `gangzones` SET `Hours` = 0 WHERE `ID` = 7 LIMIT 1;) - Successfully executed.
[23:22:13] >> mysql_query( Connection handle: 1 )
[23:22:13] CMySQLHandler::Query(UPDATE `gangzones` SET `Hours` = 0 WHERE `ID` = 8 LIMIT 1;) - Successfully executed.
[23:22:13] >> mysql_query( Connection handle: 1 )
[23:22:13] CMySQLHandler::Query(UPDATE `gangzones` SET `Hours` = 0 WHERE `ID` = 9 LIMIT 1;) - Successfully executed.
[23:22:13] >> mysql_query( Connection handle: 1 )
[23:22:13] CMySQLHandler::Query(UPDATE `gangzones` SET `Hours` = 0 WHERE `ID` = 10 LIMIT 1;) - Successfully executed.
[23:22:13] >> mysql_query( Connection handle: 1 )
[23:22:13] CMySQLHandler::Query(UPDATE `gangzones` SET `Hours` = 0 WHERE `ID` = 11 LIMIT 1;) - Successfully executed.
[23:22:13] >> mysql_query( Connection handle: 1 )
[23:22:13] CMySQLHandler::Query(UPDATE `gangzones` SET `Hours` = 0 WHERE `ID` = 12 LIMIT 1;) - Successfully executed.
[23:22:13] >> mysql_query( Connection handle: 1 )
[23:22:13] CMySQLHandler::Query(UPDATE `gangzones` SET `Hours` = 0 WHERE `ID` = 13 LIMIT 1;) - Successfully executed.
[23:22:13] >> mysql_query( Connection handle: 1 )
[23:22:13] CMySQLHandler::Query(UPDATE `gangzones` SET `Hours` = 0 WHERE `ID` = 14 LIMIT 1;) - Successfully executed.
[23:22:13] >> mysql_query( Connection handle: 1 )
[23:22:13] CMySQLHandler::Query(UPDATE `gangzones` SET `Hours` = 0 WHERE `ID` = 15 LIMIT 1;) - Successfully executed.
[23:22:13] >> mysql_query( Connection handle: 1 )
[23:22:13] CMySQLHandler::Query(UPDATE `gangzones` SET `Hours` = 0 WHERE `ID` = 16 LIMIT 1;) - Successfully executed.
[23:22:13] >> mysql_query( Connection handle: 1 )
[23:22:13] CMySQLHandler::Query(UPDATE `gangzones` SET `Hours` = 0 WHERE `ID` = 17 LIMIT 1;) - Successfully executed.
[23:22:13] >> mysql_query( Connection handle: 1 )
[23:22:13] CMySQLHandler::Query(UPDATE `gangzones` SET `Hours` = 0 WHERE `ID` = 18 LIMIT 1;) - Successfully executed.
[23:22:13] >> mysql_query( Connection handle: 1 )
[23:22:13] CMySQLHandler::Query(UPDATE `gangzones` SET `Hours` = 0 WHERE `ID` = 19 LIMIT 1;) - Successfully executed.
[23:22:13] >> mysql_query( Connection handle: 1 )
[23:22:13] CMySQLHandler::Query(UPDATE `gangzones` SET `Hours` = 0 WHERE `ID` = 20 LIMIT 1;) - Successfully executed.
[23:22:13] >> mysql_query( Connection handle: 1 )
[23:22:13] CMySQLHandler::Query(UPDATE `gangzones` SET `Hours` = 0 WHERE `ID` = 21 LIMIT 1;) - Successfully executed.
[23:22:13] >> mysql_query( Connection handle: 1 )
[23:22:13] CMySQLHandler::Query(UPDATE `gangzones` SET `Hours` = 0 WHERE `ID` = 22 LIMIT 1;) - Successfully executed.
[23:22:13] >> mysql_query( Connection handle: 1 )
[23:22:13] CMySQLHandler::Query(UPDATE `gangzones` SET `Hours` = 0 WHERE `ID` = 23 LIMIT 1;) - Successfully executed.
[23:22:13] >> mysql_query( Connection handle: 1 )
[23:22:13] CMySQLHandler::Query(UPDATE `gangzones` SET `Hours` = 0 WHERE `ID` = 24 LIMIT 1;) - Successfully executed.
[23:22:13] >> mysql_query( Connection handle: 1 )
[23:22:13] CMySQLHandler::Query(UPDATE `gangzones` SET `Hours` = 0 WHERE `ID` = 25 LIMIT 1;) - Successfully executed.
[23:22:13] >> mysql_query( Connection handle: 1 )
[23:22:13] CMySQLHandler::Query(UPDATE `gangzones` SET `Hours` = 0 WHERE `ID` = 26 LIMIT 1;) - Successfully executed.
[23:22:13] >> mysql_query( Connection handle: 1 )
[23:22:13] CMySQLHandler::Query(UPDATE `gangzones` SET `Hours` = 0 WHERE `ID` = 27 LIMIT 1;) - Successfully executed.
[23:22:13] >> mysql_query( Connection handle: 1 )
[23:22:13] CMySQLHandler::Query(UPDATE `gangzones` SET `Hours` = 0 WHERE `ID` = 28 LIMIT 1;) - Successfully executed.
[23:22:13] >> mysql_query( Connection handle: 1 )
[23:22:13] CMySQLHandler::Query(UPDATE `gangzones` SET `Hours` = 0 WHERE `ID` = 29 LIMIT 1;) - Successfully executed.
[23:22:13] >> mysql_query( Connection handle: 1 )
[23:22:13] CMySQLHandler::Query(UPDATE `gangzones` SET `Hours` = 0 WHERE `ID` = 30 LIMIT 1;) - Successfully executed.
[23:22:13] >> mysql_query( Connection handle: 1 )
[23:22:13] CMySQLHandler::Query(UPDATE `gangzones` SET `Hours` = 0 WHERE `ID` = 31 LIMIT 1;) - Successfully executed.
[23:22:13] >> mysql_query( Connection handle: 1 )
[23:22:13] CMySQLHandler::Query(UPDATE `gangzones` SET `Hours` = 0 WHERE `ID` = 32 LIMIT 1;) - Successfully executed.
[23:22:13] >> mysql_query( Connection handle: 1 )
[23:22:13] CMySQLHandler::Query(UPDATE `gangzones` SET `Hours` = 0 WHERE `ID` = 33 LIMIT 1;) - Successfully executed.
[23:22:13] >> mysql_query( Connection handle: 1 )
[23:22:13] CMySQLHandler::Query(UPDATE `gangzones` SET `Hours` = 0 WHERE `ID` = 34 LIMIT 1;) - Successfully executed.
[23:22:13] >> mysql_query( Connection handle: 1 )
[23:22:13] CMySQLHandler::Query(UPDATE `gangzones` SET `Hours` = 0 WHERE `ID` = 35 LIMIT 1;) - Successfully executed.
[23:22:13] >> mysql_query( Connection handle: 1 )
[23:22:13] CMySQLHandler::Query(UPDATE `gangzones` SET `Hours` = 0 WHERE `ID` = 36 LIMIT 1;) - Successfully executed.
[23:22:13] >> mysql_query( Connection handle: 1 )
[23:22:13] CMySQLHandler::Query(UPDATE `gangzones` SET `Hours` = 0 WHERE `ID` = 37 LIMIT 1;) - Successfully executed.
[23:22:13] >> mysql_query( Connection handle: 1 )
[23:22:13] CMySQLHandler::Query(UPDATE `gangzones` SET `Hours` = 0 WHERE `ID` = 38 LIMIT 1;) - Successfully executed.
[23:22:13] >> mysql_query( Connection handle: 1 )
[23:22:13] CMySQLHandler::Query(UPDATE `gangzones` SET `Hours` = 0 WHERE `ID` = 39 LIMIT 1;) - Successfully executed.
[23:22:13] >> mysql_query( Connection handle: 1 )
[23:22:13] CMySQLHandler::Query(UPDATE `gangzones` SET `Hours` = 0 WHERE `ID` = 40 LIMIT 1;) - Successfully executed.
[23:22:13] >> mysql_query( Connection handle: 1 )
[23:22:13] CMySQLHandler::Query(UPDATE `gangzones` SET `Hours` = 0 WHERE `ID` = 41 LIMIT 1;) - Successfully executed.
[23:22:13] >> mysql_query( Connection handle: 1 )
[23:22:13] CMySQLHandler::Query(UPDATE `gangzones` SET `Hours` = 0 WHERE `ID` = 42 LIMIT 1;) - Successfully executed.
[23:22:13] >> mysql_query( Connection handle: 1 )
[23:22:14] CMySQLHandler::Query(UPDATE `gangzones` SET `Hours` = 0 WHERE `ID` = 43 LIMIT 1;) - Successfully executed.
[23:22:14] >> mysql_query( Connection handle: 1 )
[23:22:14] CMySQLHandler::Query(UPDATE `gangzones` SET `Hours` = 0 WHERE `ID` = 44 LIMIT 1;) - Successfully executed.
[23:22:14] >> mysql_query( Connection handle: 1 )
[23:22:14] CMySQLHandler::Query(UPDATE `gangzones` SET `Hours` = 0 WHERE `ID` = 45 LIMIT 1;) - Successfully executed.
[23:22:14] >> mysql_query( Connection handle: 1 )
[23:22:14] CMySQLHandler::Query(UPDATE `gangzones` SET `Hours` = 0 WHERE `ID` = 46 LIMIT 1;) - Successfully executed.
[23:22:14] >> mysql_query( Connection handle: 1 )
[23:22:14] CMySQLHandler::Query(UPDATE `gangzones` SET `Hours` = 0 WHERE `ID` = 47 LIMIT 1;) - Successfully executed.
[23:22:14] >> mysql_query( Connection handle: 1 )
[23:22:14] CMySQLHandler::Query(UPDATE `gangzones` SET `Hours` = 0 WHERE `ID` = 48 LIMIT 1;) - Successfully executed.
[23:22:14] >> mysql_query( Connection handle: 1 )
Link to comment
Share on other sites

  • 0

Aici?

public UpdateGangZone(i)
{
    new szString[ 128 ], z_id = zoneID - 1;
    if(WarWon == 5)
    {
        GZ_DATA[ z_id ][ zColor ] = COLOR_CHICHAGOFF;
        return 1;
    }
    else if (WarWon == 6)
    {
        GZ_DATA[ z_id ][ zColor ] = COLOR_SMINIONA;
         return 1;
    }
    else if(WarWon == 12)
    {
         GZ_DATA[ z_id ][ zColor ] = COLOR_FORLENZAFF;
         return 1;
    }
    else if(WarWon == 13)
    {
         GZ_DATA[ z_id ][ zColor ] = COLOR_ZALUCHIFF;
         return 1;
    }
    GZ_DATA[ z_id ][ zOwner ] = WarWon;
    GZ_DATA[ z_id ][ zOwned ] = 1;
    for(new x; x < MAX_PLAYERS; x++)
    {
        if(!IsPlayerConnected(i)) continue;
        if( turf[ i ] != 0 )
        {
            GangZoneHideForPlayerEx( i, GZ_DATA[ z_id ][ zID ] );
            GangZoneShowForPlayerEx( i, GZ_DATA[ z_id ][ zID ], GZ_DATA[ z_id ][ zColor ] );
        }
    }
    format( szString, 128, "UPDATE `gangzones` SET `Color` = %d, `Owner` = %d, `Owned` = %d WHERE `ID` = %d", GZ_DATA[ z_id ][ zColor ], GZ_DATA[ z_id ][ zOwner ], GZ_DATA[ z_id ][ zOwned ], zoneID );
    mysql_query( szString );
    return 1;
}

 

 

Link to comment
Share on other sites

  • 0

Le citeste corect acuma dar tot nu merge bine...
Intru ingame apar conturile fara culori pentru ca nu le-am pus culorile am zis ca dau /war si se pun ele.Ma duc pe turfs dau /war incepe war dar dispare conturul si turf-ul nu incepe sa clipeasca cu rosu asa cum e normal.Dupa ce se termina war-ul astept sa vad daca pune culoare dar nu pune si imi si da erori in server_log..Am dat /war de la mafia cu id 5

 

[01:13:57] [debug] Run time error 4: "Array index out of bounds"
[01:13:57] [debug]  Accessing element at negative index -1
[01:13:57] [debug] AMX backtrace:
[01:13:57] [debug] #0 0018c100 in public UpdateGangZone (i=999) at C:\Users\Jimmi\Desktop\93.119.25.182-7777\gamemodes\RunStrike.pwn:21712
[01:13:57] [debug] #1 0018d3f4 in public SyncUp () at C:\Users\Jimmi\Desktop\93.119.25.182-7777\gamemodes\RunStrike.pwn:21792
Public UpdateGangZone
public UpdateGangZone(i)
{
    new szString[ 128 ], z_id = zoneID - 1;
    if(WarWon == 5)
    {
        GZ_DATA[ z_id ][ zColor ] = COLOR_CHICHAGOFF;
        return 1;
    }
    else if (WarWon == 6)
    {
        GZ_DATA[ z_id ][ zColor ] = COLOR_SMINIONA;
         return 1;
    }
    else if(WarWon == 12)
    {
         GZ_DATA[ z_id ][ zColor ] = COLOR_FORLENZAFF;
         return 1;
    }
    else if(WarWon == 13)
    {
         GZ_DATA[ z_id ][ zColor ] = COLOR_ZALUCHIFF;
         return 1;
    }
    GZ_DATA[ z_id ][ zOwner ] = WarWon;
    GZ_DATA[ z_id ][ zOwned ] = 1;
    for(new x; x < MAX_PLAYERS; x++)
    {
        if(!IsPlayerConnected(i)) continue;
        if( turf[ i ] != 0 )
        {
            GangZoneHideForPlayerEx( i, GZ_DATA[ z_id ][ zID ] );
            GangZoneShowForPlayerEx( i, GZ_DATA[ z_id ][ zID ], GZ_DATA[ z_id ][ zColor ] );
        }
    }
    format( szString, 128, "UPDATE `gangzones` SET `Color` = %d, `Owner` = %d, `Owned` = %d WHERE `ID` = %d", GZ_DATA[ z_id ][ zColor ], GZ_DATA[ z_id ][ zOwner ], GZ_DATA[ z_id ][ zOwned ], zoneID );
    mysql_query( szString );
    return 1;
}
Linia unde da eroare:
GZ_DATA[ z_id ][ zColor ] = COLOR_CHICHAGOFF;
Public  SyncUp
public SyncUp()
{
    clockk();
    if(War == 0) WarStarted = 0;
    if(War != 0 && WarStarted < 16 && WarStarted >= 1)
    {
        WarStarted--;
    }
    if(War != 0 && WarStarted == 1)
    {
        new string[256], ftext[64], ftext1[64];
        if(WarPoints[WarF] > WarPoints[WarF1]) WarWon = WarF;
        if(WarPoints[WarF] < WarPoints[WarF1] || WarPoints[WarF] == WarPoints[WarF1]) WarWon = WarF1;
        if(WarF == 6) strmid(ftext, "Falcone Famiglia", 0, 64, 64);
        if(WarF == 13) strmid(ftext, "Orleans Families", 0, 64, 64);
        if(WarF == 12) strmid(ftext, "18th Street Gang", 0, 64, 64);
        if(WarF == 5) strmid(ftext, "Dallas Crime Family", 0, 64, 64);
        if(WarF1 == 6) strmid(ftext1, "Falcone Famiglia", 0, 64, 64);
        if(WarF1 == 13) strmid(ftext1, "Orleans Families", 0, 64, 64);
        if(WarF1 == 12) strmid(ftext1, "18th Street Gang", 0, 64, 64);
        if(WarF1 == 5) strmid(ftext1, "Dallas Crime Family", 0, 64, 64);
        format(string, sizeof(string), "{8D8DFF}(( Stirile PG-ZONE: )) {FFFFFF}Razboiul s-a sfarsit! Scor Final: %s %d - %d %s", ftext, WarPoints[WarF], WarPoints[WarF1], ftext1);
        OOCNews(COLOR_LIGHTBLUE, string);
        new senderwar[MAX_PLAYER_NAME], senderwar1[MAX_PLAYER_NAME];
        GetPlayerName(WarMan1, senderwar, sizeof(senderwar));
        GetPlayerName(WarMan2, senderwar1, sizeof(senderwar1));
        if(!IsPlayerConnected(WarMan1) || WarMan1 == 999) strmid(senderwar, "-", 0, MAX_PLAYER_NAME, MAX_PLAYER_NAME);
        if(!IsPlayerConnected(WarMan2) || WarMan2 == 999) strmid(senderwar1, "-", 0, MAX_PLAYER_NAME, MAX_PLAYER_NAME);
        format(string, sizeof(string), "{8D8DFF}(( Stirile PG-ZONE: )) {FFFFFF}Cel mai bun gangster: %s [%d Ucideri] | Cel mai slab gangster: %s. [%d Decese]", senderwar, WarScore1, senderwar1, WarScore2);
        OOCNews(COLOR_LIGHTBLUE, string);
        WarMan1 = 999; WarMan2 = 999; WarScore1 = 0; WarScore2 = 0;
        War = 0;
        GZ_DATA[ WarZone - 1 ][ zHours ] = 3;
        WarZone = 999;
        WarStarted = 0;
        WarF = 0;
        WarF1 = 0;
        WarAttack1 = 999;
        WarAttack2 = 999;
        for(new w = 0; w < sizeof( GZ_DATA ); w++)
        {
            WarPoints[w] = 0;
        }
        UpdateGangZone( WarZone );
    }
    SyncTime();
    DollahScoreUpdate();
    for(new i=0; i<MAX_PLAYERS; i++) // POATE PRODUCE LAG
    {
        if(AdTimer[i] > 0) AdTimer[i] --;
        if(DrugTimer[i] > 0) DrugTimer[i] --;
        if(FillTimer[i] > 0) FillTimer[i] --;
        if(Efraction[i] > 0) Efraction[i] --;
        if(HauntedPerson == i)
        {
            SetPlayerTime(i, 24, 0);
            SetPlayerWeather(i, 19);
        }
        //OnPlayerUpdateEx(i);
        if(PlayerInfo[i][pMuted] >= 1) PlayerInfo[i][pMuted] --;
        if(PlayerInfo[i][pRMuted] >= 1) PlayerInfo[i][pMuted] --;
    }
    return 1;
}

Linia unde da eroare:

UpdateGangZone( WarZone );
Comanda /war daca ajuta la ceva...
//========================================[CMD:WAR]=========================================================//
CMD:war(playerid,params[])
{
       if(IsAMafia(playerid))
       {
            new string[256];
            new sendername[MAX_PLAYER_NAME];
            new rhour, rminute, rsecond, zone[MAX_ZONE_NAME];
           GetPlayer2DRadarZone(playerid, zone, sizeof(zone));
           gettime(rhour, rminute, rsecond);
           if(rhour < 19 && rhour > 21) return SendClientMessage(playerid, COLOR_WHITE, "{0066FF}War: {FFFFFF}Poti da war decat intre 19:00 - 21:00 !");
           new side[MAX_PLAYERS], ncount=0;
           if(PlayerInfo[playerid][pLeader] != 0) side[playerid] = PlayerInfo[playerid][pLeader]; else if(PlayerInfo[playerid][pMember] != 0) side[playerid] = PlayerInfo[playerid][pMember];
           for(new n=1; n<sizeof(GangInfo); n++)
           {
               if(GangInfo[n][gFaction] == side[playerid]) ncount++;
           }
           if(PlayerInfo[playerid][pRank] >= 4) {} else return SendClientMessage(playerid, COLOR_WHITE, "{0066FF}War: {FFFFFF}Nu ai rangul necesar!");
           if(GetPlayerInterior(playerid) != 0) return 1;
           if(War != 0) return SendClientMessage(playerid, COLOR_WHITE, "{0066FF}War: {FFFFFF}Este deja un razboi in desfasurare!");
           new ward;
           if(Warallowed == 0) return SendClientMessage(playerid, COLOR_WHITE, "{0066FF}War: {FFFFFF}Un admin a inchis sistemul de razboaie temporar!");
           GetPlayerName(playerid, sendername, sizeof(sendername));
          if(IsPlayerInArea(playerid, 114.21, 506.54, -1364.93, -912.91)) ward = 1;
          else if(IsPlayerInArea(playerid, 506.54, 899.25, -1364.93, -912.91)) ward = 2;
          else if(IsPlayerInArea(playerid, 899.25, 1313.58, -1313.70, -912.91)) ward = 3;
          else if(IsPlayerInArea(playerid, 1313.58, 1727.49, -1364.93, -912.91)) ward = 4;
          else if(IsPlayerInArea(playerid, 1727.49, 2108.13, -1364.93, -912.91)) ward = 5;
          else if(IsPlayerInArea(playerid, 2108.13, 2499.38, -1364.93, -912.91)) ward = 6;
          else if(IsPlayerInArea(playerid, 2499.38, 2916.17, -1313.70, -912.91)) ward = 7;
          else if(IsPlayerInArea(playerid, 114.21, 506.54, -1821.03, -1364.93)) ward = 8;
          else if(IsPlayerInArea(playerid, 506.54, 899.25, -1821.03, -1364.93)) ward = 9;
          else if(IsPlayerInArea(playerid, 899.25, 1313.58, -1721.90, -1313.70)) ward = 10;
          else if(IsPlayerInArea(playerid, 1313.58, 1727.49, -1821.03, -1364.93)) ward = 11;
          else if(IsPlayerInArea(playerid, 1727.49, 2108.13, -1821.03, -1364.93)) ward = 12;
          else if(IsPlayerInArea(playerid, 2108.13, 2499.38, -1821.03, -1364.93)) ward = 13;
          else if(IsPlayerInArea(playerid, 2499.38, 2916.17, -1737.65, -1313.70)) ward = 14;
          else if(IsPlayerInArea(playerid, 899.25, 1313.58, -2131.32, -1721.90)) ward = 15;
          else if(IsPlayerInArea(playerid, 899.25, 1313.58, -2489.99, -2131.32)) ward = 16;
          else if(IsPlayerInArea(playerid, 1313.58, 1727.49, -2250.92, -1821.03)) ward = 17;
          else if(IsPlayerInArea(playerid, 1727.49, 2108.13, -2250.92, -1821.03)) ward = 18;
          else if(IsPlayerInArea(playerid, 2108.13, 2499.38, -2250.92, -1821.03)) ward = 19;
          else if(IsPlayerInArea(playerid, 2499.38, 2916.17, -2172.41, -1737.65)) ward = 20;
          else if(IsPlayerInArea(playerid, 1313.58, 1727.49, -2690.47, -2250.92)) ward = 21;
          else if(IsPlayerInArea(playerid, 1727.49, 2108.13, -2690.47, -2250.92)) ward = 22;
          else if(IsPlayerInArea(playerid, 2108.13, 2499.38, -2690.47, -2250.92)) ward = 23;
          else if(IsPlayerInArea(playerid, 2499.38, 2916.17, -2567.91, -2172.41)) ward = 24;
          else if(IsPlayerInArea(playerid, 1114.47, 1478.16, 2444.49, 2901.03)) ward = 25;
          else if(IsPlayerInArea(playerid, 1478.16, 1828.16, 2444.49, 2901.03)) ward = 26;
          else if(IsPlayerInArea(playerid, 1828.16, 2150.16, 2444.49, 2901.03)) ward = 27;
          else if(IsPlayerInArea(playerid, 2150.16, 2528.16, 2444.49, 2901.03)) ward = 28;
          else if(IsPlayerInArea(playerid, 2528.16, 2878.16, 2444.49, 2901.03)) ward = 29;
          else if(IsPlayerInArea(playerid, 901.16, 1307.16, 1980.34, 2444.49)) ward = 30;
          else if(IsPlayerInArea(playerid, 1307.16, 1677.16, 1980.34, 2444.49)) ward = 31;
          else if(IsPlayerInArea(playerid, 1677.16, 2076.16, 1980.34, 2444.49)) ward = 32;
          else if(IsPlayerInArea(playerid, 2076.16, 2482.00, 1980.34, 2444.49)) ward = 33;
          else if(IsPlayerInArea(playerid, 2482.00, 2878.16, 1980.34, 2444.49)) ward = 34;
          else if(IsPlayerInArea(playerid, 901.16, 1307.16, 1528.09, 1980.34)) ward = 35;
          else if(IsPlayerInArea(playerid, 1307.16, 1677.16, 1528.09, 1980.34)) ward = 36;
          else if(IsPlayerInArea(playerid, 1677.16, 2076.16, 1528.09, 1980.34)) ward = 37;
          else if(IsPlayerInArea(playerid, 2076.16, 2482.00, 1528.09, 1980.34)) ward = 38;
          else if(IsPlayerInArea(playerid, 2482.00, 2878.16, 1528.09, 1980.34)) ward = 39;
          else if(IsPlayerInArea(playerid, 901.16, 1307.16, 1074.90, 1528.09)) ward = 40;
          else if(IsPlayerInArea(playerid, 1307.16, 1677.16, 1074.90, 1528.09)) ward = 41;
          else if(IsPlayerInArea(playerid, 1677.16, 2076.16, 1074.90, 1528.09)) ward = 42;
          else if(IsPlayerInArea(playerid, 2076.16, 2482.00, 1074.90, 1528.09)) ward = 43;
          else if(IsPlayerInArea(playerid, 2482.00, 2878.16, 1074.90, 1528.09)) ward = 44;
          else if(IsPlayerInArea(playerid, 1307.16, 1677.16, 663.83, 1074.90)) ward = 45;
          else if(IsPlayerInArea(playerid, 1677.16, 2076.16, 663.83, 1074.90)) ward = 46;
          else if(IsPlayerInArea(playerid, 2076.16, 2482.00, 663.83, 1074.90)) ward = 47;
          else if(IsPlayerInArea(playerid, 2482.00, 2878.16, 663.83, 1074.90)) ward = 48;
          else return 1;
          format(string, sizeof(string), "{0066FF}War: {FFFFFF}Acest teritoriu a fost deja ocupat acum %d ore.", GangInfo[ward][gHours]);
          if(GangInfo[ward][gHours] > 0 && AdminDuty[playerid] == 0) return SendClientMessage(playerid, COLOR_WHITE, string);
          if(PlayerInfo[playerid][pLeader] >= 1) {} else return SendClientMessage(playerid, COLOR_WHITE, "{0066FF}War: {FFFFFF}Trebuie sa fii liderul unei mafie!");
          new ftext[60], ftext1[60];
          if(PlayerInfo[playerid][pMember] == 5 || PlayerInfo[playerid][pLeader] == 5) format(ftext, sizeof(ftext), "{5F361E}Dallas Crime Family{FFFFFF}");
          if(PlayerInfo[playerid][pMember] == 6 || PlayerInfo[playerid][pLeader] == 6) format(ftext, sizeof(ftext), "{C8C1BF}Falcone Familigia{FFFFFF}");
           if(PlayerInfo[playerid][pMember] == 12 || PlayerInfo[playerid][pLeader] == 12) format(ftext, sizeof(ftext), "{D4AA1E}18th Street Gang Family{FFFFFF}");
          if(PlayerInfo[playerid][pMember] == 13 || PlayerInfo[playerid][pLeader] == 13) format(ftext, sizeof(ftext), "{D4AA1E}Orleans Familly{FFFFFF}");
          if(GangInfo[ward][gFaction] == 5) format(ftext1, sizeof(ftext1), "{5F361E}Dallas Crime Family{FFFFFF}");
          if(GangInfo[ward][gFaction] == 6) format(ftext1, sizeof(ftext1), "{C8C1BF}Falcone Familigia{FFFFFF}");
          if(GangInfo[ward][gFaction] == 12) format(ftext1, sizeof(ftext1), "{7716A0}18th Street Gang Familly{FFFFFF}");
          if(GangInfo[ward][gFaction] == 13) format(ftext1, sizeof(ftext1), "{D4AA1E}Orleans Families{FFFFFF}");
          format(string, sizeof(string), "(( Gang News: )) %s a declansat un razboi impotriva %s!", ftext, ftext1);
          BroadCast(0x8D8DFFFF,string);
          format(string, sizeof(string), "(( Gang News: )) {FFFFFF}Razboiul se desfasoara in zona {FF0000}%s{FFFFFF}! Stati departe!", zone);
          BroadCast(0x8D8DFFFF,string);
          if(IsPlayerInArea(playerid, 506.54, 899.25, -1364.93, -912.91)) GangZoneFlashForAll(Gangzone[1], 0xFF6347AA);
          else if(IsPlayerInArea(playerid, 899.25, 1313.58, -1313.70, -912.91)) GangZoneFlashForAll(Gangzone[2], 0xFF6347AA);
          else if(IsPlayerInArea(playerid, 1313.58, 1727.49, -1364.93, -912.91)) GangZoneFlashForAll(Gangzone[3], 0xFF6347AA);
          else if(IsPlayerInArea(playerid, 1727.49, 2108.13, -1364.93, -912.91)) GangZoneFlashForAll(Gangzone[4], 0xFF6347AA);
          else if(IsPlayerInArea(playerid, 2108.13, 2499.38, -1364.93, -912.91)) GangZoneFlashForAll(Gangzone[5], 0xFF6347AA);
          else if(IsPlayerInArea(playerid, 2499.38, 2916.17, -1313.70, -912.91)) GangZoneFlashForAll(Gangzone[6], 0xFF6347AA);
          else if(IsPlayerInArea(playerid, 114.21, 506.54, -1821.03, -1364.93)) GangZoneFlashForAll(Gangzone[7], 0xFF6347AA);
          else if(IsPlayerInArea(playerid, 506.54, 899.25, -1821.03, -1364.93)) GangZoneFlashForAll(Gangzone[8], 0xFF6347AA);
          else if(IsPlayerInArea(playerid, 899.25, 1313.58, -1721.90, -1313.70)) GangZoneFlashForAll(Gangzone[9], 0xFF6347AA);
          else if(IsPlayerInArea(playerid, 1313.58, 1727.49, -1821.03, -1364.93)) GangZoneFlashForAll(Gangzone[10], 0xFF6347AA);
          else if(IsPlayerInArea(playerid, 1727.49, 2108.13, -1821.03, -1364.93)) GangZoneFlashForAll(Gangzone[11], 0xFF6347AA);
          else if(IsPlayerInArea(playerid, 2108.13, 2499.38, -1821.03, -1364.93)) GangZoneFlashForAll(Gangzone[12], 0xFF6347AA);
          else if(IsPlayerInArea(playerid, 2499.38, 2916.17, -1737.65, -1313.70)) GangZoneFlashForAll(Gangzone[13], 0xFF6347AA);
          else if(IsPlayerInArea(playerid, 899.25, 1313.58, -2131.32, -1721.90)) GangZoneFlashForAll(Gangzone[14], 0xFF6347AA);
          else if(IsPlayerInArea(playerid, 899.25, 1313.58, -2489.99, -2131.32)) GangZoneFlashForAll(Gangzone[15], 0xFF6347AA);
          else if(IsPlayerInArea(playerid, 1313.58, 1727.49, -2250.92, -1821.03)) GangZoneFlashForAll(Gangzone[16], 0xFF6347AA);
          else if(IsPlayerInArea(playerid, 1727.49, 2108.13, -2250.92, -1821.03)) GangZoneFlashForAll(Gangzone[17], 0xFF6347AA);
          else if(IsPlayerInArea(playerid, 2108.13, 2499.38, -2250.92, -1821.03)) GangZoneFlashForAll(Gangzone[18], 0xFF6347AA);
          else if(IsPlayerInArea(playerid, 2499.38, 2916.17, -2172.41, -1737.65)) GangZoneFlashForAll(Gangzone[19], 0xFF6347AA);
          else if(IsPlayerInArea(playerid, 1313.58, 1727.49, -2690.47, -2250.92)) GangZoneFlashForAll(Gangzone[20], 0xFF6347AA);
          else if(IsPlayerInArea(playerid, 1727.49, 2108.13, -2690.47, -2250.92)) GangZoneFlashForAll(Gangzone[21], 0xFF6347AA);
          else if(IsPlayerInArea(playerid, 2108.13, 2499.38, -2690.47, -2250.92)) GangZoneFlashForAll(Gangzone[22], 0xFF6347AA);
          else if(IsPlayerInArea(playerid, 2499.38, 2916.17, -2567.91, -2172.41)) GangZoneFlashForAll(Gangzone[23], 0xFF6347AA);
          else if(IsPlayerInArea(playerid, 1114.47, 1478.16, 2444.49, 2901.03)) GangZoneFlashForAll(Gangzone[24], 0xFF6347AA);
          else if(IsPlayerInArea(playerid, 1478.16, 1828.16, 2444.49, 2901.03)) GangZoneFlashForAll(Gangzone[25], 0xFF6347AA);
          else if(IsPlayerInArea(playerid, 1828.16, 2150.16, 2444.49, 2901.03)) GangZoneFlashForAll(Gangzone[26], 0xFF6347AA);
          else if(IsPlayerInArea(playerid, 2150.16, 2528.16, 2444.49, 2901.03)) GangZoneFlashForAll(Gangzone[27], 0xFF6347AA);
          else if(IsPlayerInArea(playerid, 2528.16, 2878.16, 2444.49, 2901.03)) GangZoneFlashForAll(Gangzone[28], 0xFF6347AA);
          else if(IsPlayerInArea(playerid, 901.16, 1307.16, 1980.34, 2444.49)) GangZoneFlashForAll(Gangzone[29], 0xFF6347AA);
          else if(IsPlayerInArea(playerid, 1307.16, 1677.16, 1980.34, 2444.49)) GangZoneFlashForAll(Gangzone[30], 0xFF6347AA);
          else if(IsPlayerInArea(playerid, 1677.16, 2076.16, 1980.34, 2444.49)) GangZoneFlashForAll(Gangzone[31], 0xFF6347AA);
          else if(IsPlayerInArea(playerid, 2076.16, 2482.00, 1980.34, 2444.49)) GangZoneFlashForAll(Gangzone[32], 0xFF6347AA);
          else if(IsPlayerInArea(playerid, 2482.00, 2878.16, 1980.34, 2444.49)) GangZoneFlashForAll(Gangzone[33], 0xFF6347AA);
          else if(IsPlayerInArea(playerid, 901.16, 1307.16, 1528.09, 1980.34)) GangZoneFlashForAll(Gangzone[34], 0xFF6347AA);
          else if(IsPlayerInArea(playerid, 1307.16, 1677.16, 1528.09, 1980.34)) GangZoneFlashForAll(Gangzone[35], 0xFF6347AA);
          else if(IsPlayerInArea(playerid, 1677.16, 2076.16, 1528.09, 1980.34)) GangZoneFlashForAll(Gangzone[36], 0xFF6347AA);
          else if(IsPlayerInArea(playerid, 2076.16, 2482.00, 1528.09, 1980.34)) GangZoneFlashForAll(Gangzone[37], 0xFF6347AA);
          else if(IsPlayerInArea(playerid, 2482.00, 2878.16, 1528.09, 1980.34)) GangZoneFlashForAll(Gangzone[38], 0xFF6347AA);
          else if(IsPlayerInArea(playerid, 901.16, 1307.16, 1074.90, 1528.09)) GangZoneFlashForAll(Gangzone[39], 0xFF6347AA);
          else if(IsPlayerInArea(playerid, 1307.16, 1677.16, 1074.90, 1528.09)) GangZoneFlashForAll(Gangzone[40], 0xFF6347AA);
          else if(IsPlayerInArea(playerid, 1677.16, 2076.16, 1074.90, 1528.09)) GangZoneFlashForAll(Gangzone[41], 0xFF6347AA);
          else if(IsPlayerInArea(playerid, 2076.16, 2482.00, 1074.90, 1528.09)) GangZoneFlashForAll(Gangzone[42], 0xFF6347AA);
          else if(IsPlayerInArea(playerid, 2482.00, 2878.16, 1074.90, 1528.09)) GangZoneFlashForAll(Gangzone[43], 0xFF6347AA);
          else if(IsPlayerInArea(playerid, 1307.16, 1677.16, 663.83, 1074.90)) GangZoneFlashForAll(Gangzone[44], 0xFF6347AA);
          else if(IsPlayerInArea(playerid, 1677.16, 2076.16, 663.83, 1074.90)) GangZoneFlashForAll(Gangzone[45], 0xFF6347AA);
          else if(IsPlayerInArea(playerid, 2076.16, 2482.00, 663.83, 1074.90)) GangZoneFlashForAll(Gangzone[46], 0xFF6347AA);
          else if(IsPlayerInArea(playerid, 2482.00, 2878.16, 663.83, 1074.90)) GangZoneFlashForAll(Gangzone[47], 0xFF6347AA);
          else if(IsPlayerInArea(playerid, 114.21, 506.54, -1364.93, -912.91)) GangZoneFlashForAll(Gangzone[48], 0xFF6347AA);
           WarStarted=15;
           WarF = side[playerid];
           WarF1 = GangInfo[ward][gFaction];
           WarZone = ward;
           for(new w = 0; w < sizeof(GangInfo); w++)
           {
               WarPoints[w] = 0;
           }
           if(side[playerid] == 6 || side[playerid] == 13) WarAttack1 = 1; else WarAttack1 = 2;
           if(GangInfo[ward][gFaction] == 6 || GangInfo[ward][gFaction] == 13) WarAttack2 = 1; else WarAttack2 = 2;
         if(IsAMafia(playerid)) War = 1; else if(IsAMafia(playerid)) War = 2;
          WarMan1 = 999;
        WarMan2 = 999;
          WarScore1 = 0;
          WarScore2 = 0;
         for(new i=0; i<MAX_PLAYERS; i++)
           {
                   WarStats1[i] = 0;
                WarStats2[i] = 0;
                   if(IsAIAlliance(i) || IsAAAlliance(i))
               {
                   format(string, sizeof(string), "{DC0C0C}War: {FFFFFF}%s din %s a declansat un razboi! Pentru a castiga razboiul, trebuie sa faceti un scor mai bun in 15 minute!", sendername, ftext);
                   SendClientMessage(i, COLOR_WHITE, string);
                }
           }
           if(WarF && IsAIAlliance(playerid))
           {
            WarPoints[WarF] += 1;
            }
            else if(WarF1 && IsAAAlliance(playerid))
            {
            WarPoints[WarF1] += 1;
            }
       }
    return 1;
}
 
Edited by jimmi
Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. For more details you can also review our Terms of Use and Privacy Policy.