[Include] [INC] Ultimate Anticheat (UAC) - [v1.3] - 12 Languages ! # Fixed !
#68

Quote:
Originally Posted by par30
Посмотреть сообщение
What eror
You still using this?

Try rempving that code in the including:
Код:
// line 61-71
forward UAC_OnPlayerStateChange(playerid, newstate, oldstate);
forward UAC_OnPlayerEnterVehicle(playerid, vehicleid, ispassenger);
forward UAC_OnPlayerCommandText(playerid, cmdtext[]);
forward UAC_OnPlayerText(playerid, text[]);
forward UAC_OnPlayerConnect(playerid);
forward UAC_OnPlayerSpawn(playerid);
forward UAC_OnPlayerDisconnect(playerid,reason);
forward UAC_OnGameModeInit();
forward UAC_OnGameModeExit();
forward UAC_OnPlayerInteriorChange(playerid, newinteriorid, oldinteriorid);
forward UAC_OnPlayerDeath(playerid,killerid,reason);

// at the bottom
#define OnPlayerStateChange UAC_OnPlayerStateChange
#define OnPlayerEnterVehicle UAC_OnPlayerEnterVehicle
#define OnPlayerCommandText UAC_OnPlayerCommandText
#define OnPlayerText UAC_OnPlayerText
#define OnPlayerConnect UAC_OnPlayerConnect
#define OnPlayerDisconnect UAC_OnPlayerDisconnect
#define OnGameModeInit UAC_OnGameModeInit
#define OnGameModeExit UAC_OnGameModeExit
#define OnPlayerSpawn UAC_OnPlayerSpawn
#define OnPlayerInteriorChange UAC_OnPlayerInteriorChange
#define OnPlayerDeath UAC_OnPlayerDeath
and add at the bottom of the include:
Код:
#if defined _ALS_OnPlayerCommandText
	#undef OnPlayerCommandText
#else
	#define _ALS_OnPlayerCommandText
#endif
#define OnPlayerCommandText UAC_OnPlayerCommandText
forward UAC_OnPlayerCommandText(playerid, cmdtext[]);

#if defined _ALS_OnPlayerStateChange
	#undef OnPlayerStateChange
#else
	#define _ALS_OnPlayerStateChange
#endif
#define OnPlayerStateChange UAC_OnPlayerStateChange
forward UAC_OnPlayerStateChange(playerid, newstate, oldstate);

#if defined _ALS_OnPlayerEnterVehicle
	#undef OnPlayerEnterVehicle
#else
	#define _ALS_OnPlayerEnterVehicle
#endif
#define OnPlayerEnterVehicle UAC_OnPlayerEnterVehicle
forward UAC_OnPlayerEnterVehicle(playerid, vehicleid, ispassenger);

#if defined _ALS_OnPlayerText
	#undef OnPlayerText
#else
	#define _ALS_OnPlayerText
#endif
#define OnPlayerText UAC_OnPlayerText
forward UAC_OnPlayerText(playerid, text[]);

#if defined _ALS_OnPlayerConnect
	#undef OnPlayerConnect
#else
	#define _ALS_OnPlayerConnect
#endif
#define OnPlayerConnect UAC_OnPlayerConnect
forward UAC_OnPlayerConnect(playerid);

#if defined _ALS_OnPlayerDisconnect
	#undef OnPlayerDisconnect
#else
	#define _ALS_OnPlayerDisconnect
#endif
#define OnPlayerDisconnect UAC_OnPlayerDisconnect
forward UAC_OnPlayerDisconnect(playerid,reason);

#if defined _ALS_OnGameModeInit
	#undef OnGameModeInit
#else
	#define _ALS_OnGameModeInit
#endif
#define OnGameModeInit UAC_OnGameModeInit
forward UAC_OnGameModeInit();

#if defined _ALS_OnGameModeExit
	#undef OnGameModeExit
#else
	#define _ALS_OnGameModeExit
#endif
#define OnGameModeExit UAC_OnGameModeExit
forward UAC_OnGameModeExit();

#if defined _ALS_OnPlayerSpawn
	#undef OnPlayerSpawn
#else
	#define _ALS_OnPlayerSpawn
#endif
#define OnPlayerSpawn UAC_OnPlayerSpawn
forward UAC_OnPlayerSpawn(playerid);

#if defined _ALS_OnPlayerInteriorChange
	#undef OnPlayerInteriorChange
#else
	#define _ALS_OnPlayerInteriorChange
#endif
#define OnPlayerInteriorChange UAC_OnPlayerInteriorChange
forward UAC_OnPlayerInteriorChange(playerid, newinteriorid, oldinteriorid);

#if defined _ALS_OnPlayerDeath
	#undef OnPlayerDeath
#else
	#define _ALS_OnPlayerDeath
#endif
#define OnPlayerDeath UAC_OnPlayerDeath
forward UAC_OnPlayerDeath(playerid,killerid,reason);
maybe this helps you. sry for bumping this old topic.
Reply


Messages In This Thread
[INC] Ultimate Anticheat (UAC) - [v1.3] - 13 Languages ! # Fixed ! - by Littl3j0hNy - 13.02.2009, 14:09
Re: [FS] Ultimate Anticheat (UAC) - [v1.0] - by CracK - 13.02.2009, 14:20
Re: [FS] Ultimate Anticheat (UAC) - [v1.0] - by gunit_j - 13.02.2009, 14:26
Re: [FS] Ultimate Anticheat (UAC) - [v1.0] - by Littl3j0hNy - 13.02.2009, 14:38
Re: [FS] Ultimate Anticheat (UAC) - [v1.0] - by ICECOLDKILLAK8 - 13.02.2009, 15:43
Re: [FS] Ultimate Anticheat (UAC) - [v1.0] - by SuperS0nic - 13.02.2009, 15:48
Re: [FS] Ultimate Anticheat (UAC) - [v1.0] - by CracK - 13.02.2009, 15:58
Re: [FS] Ultimate Anticheat (UAC) - [v1.0] - by Littl3j0hNy - 13.02.2009, 16:11
Re: [FS] Ultimate Anticheat (UAC) - [v1.0] - by ICECOLDKILLAK8 - 13.02.2009, 16:31
Re: [FS] Ultimate Anticheat (UAC) - [v1.0] - by Flo_White - 13.02.2009, 16:47
Re: [FS] Ultimate Anticheat (UAC) - [v1.0] - by a-day - 13.02.2009, 18:00
Re: [FS] Ultimate Anticheat (UAC) - [v1.0] - by Littl3j0hNy - 13.02.2009, 22:15
Re: [FS] Ultimate Anticheat (UAC) - [v1.1] - by papagei9 - 14.02.2009, 11:43
Re: [FS] Ultimate Anticheat (UAC) - [v1.1] - by SuperS0nic - 14.02.2009, 12:46
Re: [FS] Ultimate Anticheat (UAC) - [v1.1] - by notec100 - 14.02.2009, 19:19
Re: [FS] Ultimate Anticheat (UAC) - [v1.1] - by TrueCoppa - 14.02.2009, 20:51
Re: [FS] Ultimate Anticheat (UAC) - [v1.1] - by Prieto_Galletini - 15.02.2009, 03:12
Re: [FS] Ultimate Anticheat (UAC) - [v1.1] - by SuperS0nic - 15.02.2009, 06:29
Re: [FS] Ultimate Anticheat (UAC) - [v1.1] - by Prieto_Galletini - 15.02.2009, 06:32
Re: [FS] Ultimate Anticheat (UAC) - [v1.1] - by papagei9 - 15.02.2009, 08:27
Re: [FS] Ultimate Anticheat (UAC) - [v1.2] - by Littl3j0hNy - 15.02.2009, 09:06
Re: [FS] Ultimate Anticheat (UAC) - [v1.2] - by Nimphious - 15.02.2009, 09:38
Re: [FS] Ultimate Anticheat (UAC) - [v1.2] - by shamas - 15.02.2009, 10:58
Re: [FS] Ultimate Anticheat (UAC) - [v1.1] - by notec100 - 15.02.2009, 17:16
Re: [FS] Ultimate Anticheat (UAC) - [v1.2] - by lavamike - 15.02.2009, 17:35
Re: [FS] Ultimate Anticheat (UAC) - [v1.2] - by Lewwy - 15.02.2009, 17:37
Re: [FS] Ultimate Anticheat (UAC) - [v1.2] - by lavamike - 16.02.2009, 03:59
Re: [FS] Ultimate Anticheat (UAC) - [v1.2] - by Ed2ka49 - 16.02.2009, 09:34
Re: [FS] Ultimate Anticheat (UAC) - [v1.2] - by Littl3j0hNy - 16.02.2009, 09:36
Re: [FS] Ultimate Anticheat (UAC) - [v1.2] - by Littl3j0hNy - 16.02.2009, 20:27
Re: [INC] Ultimate Anticheat (UAC) - [v1.3] - 6 Languages ! - by Littl3j0hNy - 03.05.2009, 14:48
Re: [INC] Ultimate Anticheat (UAC) - [v1.3] - 6 Languages ! - by shindo - 08.05.2009, 12:52
Re: [INC] Ultimate Anticheat (UAC) - [v1.3] - 6 Languages ! - by Littl3j0hNy - 08.05.2009, 14:34
Re: [INC] Ultimate Anticheat (UAC) - [v1.3] - 6 Languages ! - by Gamer007 - 10.05.2009, 10:19
Re: [INC] Ultimate Anticheat (UAC) - [v1.3] - 6 Languages ! - by Littl3j0hNy - 10.05.2009, 16:48
Re: [INC] Ultimate Anticheat (UAC) - [v1.3] - 6 Languages ! - by Gamer007 - 10.05.2009, 17:07
Re: [INC] Ultimate Anticheat (UAC) - [v1.3] - 6 Languages ! - by Littl3j0hNy - 10.05.2009, 17:14
Re: [INC] Ultimate Anticheat (UAC) - [v1.3] - 6 Languages ! - by ACERS - 10.05.2009, 18:05
Re: [INC] Ultimate Anticheat (UAC) - [v1.3] - 6 Languages ! - by Littl3j0hNy - 10.05.2009, 18:22
Re: [INC] Ultimate Anticheat (UAC) - [v1.3] - 6 Languages ! - by ACERS - 10.05.2009, 19:18
Re: [INC] Ultimate Anticheat (UAC) - [v1.3] - 9 Languages ! # Fixed ! - by Nameless303 - 06.11.2009, 02:56
Re: [INC] Ultimate Anticheat (UAC) - [v1.3] - 9 Languages ! # Fixed ! - by Littl3j0hNy - 06.11.2009, 11:32
Re: [INC] Ultimate Anticheat (UAC) - [v1.3] - 9 Languages ! # Fixed ! - by kevin18000 - 13.11.2009, 09:44
Re: [INC] Ultimate Anticheat (UAC) - [v1.3] - 9 Languages ! # Fixed ! - by waim - 13.11.2009, 18:50
Re: [INC] Ultimate Anticheat (UAC) - [v1.3] - 9 Languages ! # Fixed ! - by TraNe15 - 13.11.2009, 19:33
Re: [INC] Ultimate Anticheat (UAC) - [v1.3] - 9 Languages ! # Fixed ! - by Littl3j0hNy - 14.11.2009, 09:34
Re: [INC] Ultimate Anticheat (UAC) - [v1.3] - 9 Languages ! # Fixed ! - by waim - 14.11.2009, 12:08
Re: [INC] Ultimate Anticheat (UAC) - [v1.3] - 9 Languages ! # Fixed ! - by [JIeXa] - 14.11.2009, 13:08
Re: [INC] Ultimate Anticheat (UAC) - [v1.3] - 9 Languages ! # Fixed ! - by [GWE]Ghost_Rider - 18.11.2009, 16:09
Re: [INC] Ultimate Anticheat (UAC) - [v1.3] - 9 Languages ! # Fixed ! - by Kweckey - 06.12.2009, 13:03
Re : [INC] Ultimate Anticheat (UAC) - [v1.3] - 12 Languages ! # Fixed ! - by TheBest6 - 06.10.2011, 16:03
Re: [INC] Ultimate Anticheat (UAC) - [v1.3] - 12 Languages ! # Fixed ! - by bryan1412 - 06.10.2011, 16:28
Re: [INC] Ultimate Anticheat (UAC) - [v1.3] - 12 Languages ! # Fixed ! - by Tigerkiller - 06.10.2011, 18:24
Re: [INC] Ultimate Anticheat (UAC) - [v1.3] - 12 Languages ! # Fixed ! - by bestmy19 - 06.10.2011, 19:27
Re: [INC] Ultimate Anticheat (UAC) - [v1.3] - 12 Languages ! # Fixed ! - by bryan1412 - 07.10.2011, 03:18
Re: [INC] Ultimate Anticheat (UAC) - [v1.3] - 12 Languages ! # Fixed ! - by RobertPRO - 23.07.2012, 23:44
Re: [INC] Ultimate Anticheat (UAC) - [v1.3] - 12 Languages ! # Fixed ! - by Kalroz - 28.07.2012, 04:08
AW: [INC] Ultimate Anticheat (UAC) - [v1.3] - 12 Languages ! # Fixed ! - by 'Pawno. - 28.07.2012, 08:41
AW: [INC] Ultimate Anticheat (UAC) - [v1.3] - 12 Languages ! # Fixed ! - by Cihan - 15.11.2012, 05:41
Re: [INC] Ultimate Anticheat (UAC) - [v1.3] - 12 Languages ! # Fixed ! - by Kirikage - 15.11.2012, 17:44
Re: [INC] Ultimate Anticheat (UAC) - [v1.3] - 12 Languages ! # Fixed ! - by Plovix - 16.11.2012, 17:11
Re: [INC] Ultimate Anticheat (UAC) - [v1.3] - 12 Languages ! # Fixed ! - by Mr.Valdez - 21.11.2012, 16:09
AW: [INC] Ultimate Anticheat (UAC) - [v1.3] - 12 Languages ! # Fixed ! - by Blackazur - 21.11.2012, 16:11
Re: [INC] Ultimate Anticheat (UAC) - [v1.3] - 12 Languages ! # Fixed ! - by ashwinsekhari - 23.11.2012, 13:53
Re: [INC] Ultimate Anticheat (UAC) - [v1.3] - 12 Languages ! # Fixed ! - by MrRampage67 - 29.12.2012, 14:34
Re: [INC] Ultimate Anticheat (UAC) - [v1.3] - 12 Languages ! # Fixed ! - by doreto - 29.12.2012, 14:52
Re: [INC] Ultimate Anticheat (UAC) - [v1.3] - 12 Languages ! # Fixed ! - by par30 - 22.11.2013, 11:26
AW: Re: [INC] Ultimate Anticheat (UAC) - [v1.3] - 12 Languages ! # Fixed ! - by Littl3j0hNy - 24.11.2013, 18:14
Re: [INC] Ultimate Anticheat (UAC) - [v1.3] - 12 Languages ! # Fixed ! - by Gen3i - 28.11.2013, 09:40
Re: [INC] Ultimate Anticheat (UAC) - [v1.3] - 12 Languages ! # Fixed ! - by DDR3 - 13.06.2014, 18:20
Re: [INC] Ultimate Anticheat (UAC) - [v1.3] - 12 Languages ! # Fixed ! - by OstGot - 15.06.2014, 13:00

Forum Jump:


Users browsing this thread: 4 Guest(s)