Jump to content
Autentificarea cu Google și Facebook nu mai este disponibilă. ×

Question

Posted (edited)

Problema intalnita (descriere): O serie de erori ale compilatorului , din cauza include-ului cred.
Ero(area / rile) / warning-(ul / urile): 
Liniile de cod / sursa / script-ul(obligatoriu): -
Imagini / Video (optional):-
Ati incercat sa rezolvati singur?: Da

E:\Documents and Settings\Adi\Desktop\New Folder\gamemodes\Beta1.pwn(11032) : error 017: undefined symbol "GangZoneHideForPlayerEx"
E:\Documents and Settings\Adi\Desktop\New Folder\gamemodes\Beta1.pwn(11035) : error 017: undefined symbol "GangZoneShowForPlayerEx"
E:\Documents and Settings\Adi\Desktop\New Folder\gamemodes\Beta1.pwn(11039) : error 017: undefined symbol "GangZoneShowForPlayerEx"
E:\Documents and Settings\Adi\Desktop\New Folder\gamemodes\Beta1.pwn(11043) : error 017: undefined symbol "GangZoneShowForPlayerEx"
E:\Documents and Settings\Adi\Desktop\New Folder\gamemodes\Beta1.pwn(11047) : error 017: undefined symbol "GangZoneShowForPlayerEx"
E:\Documents and Settings\Adi\Desktop\New Folder\gamemodes\Beta1.pwn(21023) : error 017: undefined symbol "GangZoneShowForPlayerEx"
E:\Documents and Settings\Adi\Desktop\New Folder\gamemodes\Beta1.pwn(21027) : error 017: undefined symbol "GangZoneShowForPlayerEx"
E:\Documents and Settings\Adi\Desktop\New Folder\gamemodes\Beta1.pwn(21031) : error 017: undefined symbol "GangZoneShowForPlayerEx"
E:\Documents and Settings\Adi\Desktop\New Folder\gamemodes\Beta1.pwn(21035) : error 017: undefined symbol "GangZoneShowForPlayerEx"
E:\Documents and Settings\Adi\Desktop\New Folder\gamemodes\Beta1.pwn(21039) : error 017: undefined symbol "GangZoneShowForPlayerEx"
E:\Documents and Settings\Adi\Desktop\New Folder\gamemodes\Beta1.pwn(21048) : error 017: undefined symbol "GangZoneHideForPlayerEx"
E:\Documents and Settings\Adi\Desktop\New Folder\gamemodes\Beta1.pwn(46187) : error 010: invalid function or declaration
E:\Documents and Settings\Adi\Desktop\New Folder\gamemodes\Beta1.pwn(46189) : error 010: invalid function or declaration
E:\Documents and Settings\Adi\Desktop\New Folder\gamemodes\Beta1.pwn(46192) : error 010: invalid function or declaration
Pawn compiler 3.2.3664              Copyright (c) 1997-2006, ITB CompuPhase


14 Errors.

#include <a_samp>        //1
#include <a_mysql>        //2
#include <streamer>        //3
#include <playerzone>    //4
#include <foreach>        //5
#include <sscanf2>        //6
#include <zcmd>            //7
#include <mSelection>   //8
#include <a_zones>      //9
#include <beaZone>      //10
#include <timerfix>     //11
#include <fly>          //12
#include <crashdetect>  //13

 

Edited by 9MMG

3 answers to this question

Recommended Posts

  • 0
Posted (edited)

Adauga asta pe undeva prin GM:

GangZoneShowForPlayerEx(playerid, zoneid, playerteam)
{
	new zonecolor;
	if (playerteam == TEAM_WCK)
	{
		zonecolor = 0xF102255B;
	}
	else if (playerteam == TEAM_GROVE)
	{
		zonecolor = 0x00FF002E;
	}
	else if (playerteam == TEAM_BALLAS)
	{
		zonecolor = 0x8000FF3C;
	}
	else if (playerteam == TEAM_SKATER)
	{
		zonecolor = 0x0000FF3F;
	}
	else if (playerteam == TEAM_POLICE)
	{
		zonecolor = 0xFFFF003D;
	}
	else if (playerteam == TEAM_FASTFOOD)
	{
		zonecolor = 0xFF80403F;
	}
	else if (playerteam == TEAM_GIRLS)
	{
		zonecolor = 0xFF00FF48;
	}
	
	GangZoneShowForPlayer(playerid, zoneid, zonecolor);
	return 1;
}

 

Edited by WiDuAlK.SaMp
  • 0
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.