Gangs turfs not show on /turfs - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Gangs turfs not show on /turfs (
/showthread.php?tid=587319)
Gangs turfs not show on /turfs -
Sn4ke2 - 29.08.2015
Hello, my problem are when i type /turfs the turfs not show, i dont know why, it's works, but now i don't know what have ...
The command
PHP код:
CMD:turfs(playerid, params[])
{
if(gPlayerLogged[playerid] == 0) return SCM(playerid, COLOR_LIGHTRED, "Nu esti logat!");
if(TurfsDisp[playerid] == 0)
{
TurfsDisp[playerid] = 1;
for(new i = 1; i < sizeof(Turfs); i++)
{
if(TurfInfo[i][zOwned] == 0)
{
GangZoneShowForPlayer(playerid, Turfs[i], 0xFFFFFFAA); //None
}
if(TurfInfo[i][zOwned] == 4)
{
GangZoneShowForPlayer(playerid, Turfs[i], 0xD900D999); //The Triad's Mafia
}
if(TurfInfo[i][zOwned] == 5)
{
GangZoneShowForPlayer(playerid, Turfs[i], 0x0080C0B2); //The Porrello Family
}
if(TurfInfo[i][zOwned] == 6)
{
GangZoneShowForPlayer(playerid, Turfs[i], 0xFF9700DE); //Sicilian Mafia
}
if(TurfInfo[i][zOwned] == 10)
{
GangZoneShowForPlayer(playerid, Turfs[i], 0x3F8C3DDE); //Grove Street Gang
}
}
ArataLinii(playerid);
}
else
{
TurfsDisp[playerid] = 0;
AscundeLinii(playerid);
for(new i = 1; i < sizeof(Turfs); i++)
{
GangZoneHideForPlayer(playerid, Turfs[i]);
}
}
return 1;
}
and i put navitchecker and see:
PHP код:
----------
Loaded log file: "server_log.txt".
----------
SA-MP Dedicated Server
----------------------
v0.3.7, (C)2005-2015 SA-MP Team
[23:18:12]
[23:18:12] Server Plugins
[23:18:12] --------------
[23:18:12] Loading plugin: nativechecker
[23:18:12] Loaded.
[23:18:12] Loading plugin: crashdetect
[23:18:12] CrashDetect v4.15.1 is OK.
[23:18:12] Loaded.
[23:18:12] Loading plugin: streamer
[23:18:12]
*** Streamer Plugin v2.7.7 by Incognito loaded ***
[23:18:12] Loaded.
[23:18:12] Loading plugin: sscanf
[23:18:12]
[23:18:12] ===============================
[23:18:12] sscanf plugin loaded.
[23:18:12] Version: 2.8.1
[23:18:12] (c) 2012 Alex "******" Cole
[23:18:12] ===============================
[23:18:12] Loaded.
[23:18:12] Loading plugin: mysql
[23:18:12] >> plugin.mysql: R38 successfully loaded.
[23:18:12] Loaded.
[23:18:12] Loaded 5 plugins.
[23:18:12]
[23:18:12] Filterscripts
[23:18:12] ---------------
[23:18:12] Loading filterscript 'Walkingstyle.amx'...
[23:18:12]
Walking Styles by Zack_Larson Loaded.
[23:18:12] Loaded 1 filterscripts.
[23:18:12] Error: Function not registered: 'cache_get_row_count'
[23:18:12] Error: Function not registered: 'cache_get_field_content'
[23:18:12] Error: Function not registered: 'cache_get_field_count'
[23:18:12] Error: Function not registered: 'cache_get_row'
[23:18:12] Error: Function not registered: 'CreateDynamicRectangle'
[23:18:12] Error: Function not registered: 'SSCANF_Init'
[23:18:12] Error: Function not registered: 'SSCANF_IsConnected'
[23:18:12] Error: Function not registered: 'SSCANF_Join'
[23:18:12] Error: Function not registered: 'SSCANF_Leave'
[23:18:12] Error: Function not registered: 'mysql_query'
[23:18:12] Error: Function not registered: 'mysql_escape_string'
[23:18:12] Error: Function not registered: 'DestroyDynamicObject'
[23:18:12] Error: Function not registered: 'mysql_close'
[23:18:12] Error: Function not registered: 'mysql_log'
[23:18:12] Error: Function not registered: 'mysql_connect'
[23:18:12] Error: Function not registered: 'CreateDynamicPickup'
[23:18:12] Error: Function not registered: 'DestroyDynamic3DTextLabel'
[23:18:12] Error: Function not registered: 'CreateDynamic3DTextLabel'
[23:18:12] Error: Function not registered: 'CreateDynamicMapIcon'
[23:18:12] Error: Function not registered: 'CreateDynamicObject'
[23:18:12] Error: Function not registered: 'CreateDynamicObjectEx'
[23:18:12] Error: Function not registered: 'SetDynamicObjectMaterial'
[23:18:12] Error: Function not registered: 'CountDynamicObjects'
[23:18:12] Error: Function not registered: 'CountDynamicPickups'
[23:18:12] Error: Function not registered: 'sscanf'
[23:18:12] Error: Function not registered: 'DestroyDynamicMapIcon'
[23:18:12] Error: Function not registered: 'cache_get_data'
[23:18:12] Error: Function not registered: 'cache_delete'
[23:18:12] Houses: 41
[23:18:12] Bussines: 8
[23:18:12] SBiz: 22
[23:18:12] Stuff Loaded
[23:18:12] Charity Loaded
[23:18:12] Turf: 24
[23:18:12] Papers: 10
[23:18:12] Dynamic Factions: 10
[23:18:12] Cars: 12
[23:18:12] Seifuri: 0
[23:18:12] Stock Loaded
[23:18:12] 1748 - Objects.
[23:18:12] 77 - Pickups.
[23:18:12] OnGameModeInit Loaded
[23:18:12] Script loaded - BlueGaming RPG v1.0
[23:18:12] Number of vehicle models: 75
+REP
Re: Gangs turfs not show on /turfs -
JordanZaundd - 29.08.2015
Try updating your sscanf and streamer plugins
Re: Gangs turfs not show on /turfs -
Dorito - 29.08.2015
It also seems as if you need to update your MySQL plugin, too.
Re: Gangs turfs not show on /turfs -
Zack Larson - 30.08.2015
Er Mah Gerd, using my filterscript lol <3 :3
Re: Gangs turfs not show on /turfs -
Sn4ke2 - 30.08.2015
Anybody else ?
Re: Gangs turfs not show on /turfs -
Sn4ke2 - 31.08.2015
Uppp !!!
Re: Gangs turfs not show on /turfs -
Sn4ke2 - 03.09.2015
Help !!!
Re: Gangs turfs not show on /turfs -
Sn4ke2 - 03.09.2015
PHP код:
[23:18:12] Turf: 24
Re: Gangs turfs not show on /turfs -
Sn4ke2 - 03.09.2015
Navitcheck
PHP код:
[14:35:59] Error: Function not registered: 'cache_get_row_count'
[14:35:59] Error: Function not registered: 'cache_get_field_content'
[14:35:59] Error: Function not registered: 'cache_get_field_count'
[14:35:59] Error: Function not registered: 'cache_get_row'
[14:35:59] Error: Function not registered: 'Streamer_CallbackHook'
[14:35:59] Error: Function not registered: 'CreateDynamicRectangle'
[14:35:59] Error: Function not registered: 'SSCANF_Init'
[14:35:59] Error: Function not registered: 'SSCANF_Join'
[14:35:59] Error: Function not registered: 'SSCANF_Leave'
[14:35:59] Error: Function not registered: 'mysql_query'
[14:35:59] Error: Function not registered: 'mysql_escape_string'
[14:35:59] Error: Function not registered: 'DestroyDynamicObject'
[14:35:59] Error: Function not registered: 'mysql_close'
[14:35:59] Error: Function not registered: 'mysql_log'
[14:35:59] Error: Function not registered: 'mysql_connect'
[14:35:59] Error: Function not registered: 'CreateDynamicPickup'
[14:35:59] Error: Function not registered: 'DestroyDynamic3DTextLabel'
[14:35:59] Error: Function not registered: 'CreateDynamic3DTextLabel'
[14:35:59] Error: Function not registered: 'CreateDynamicMapIcon'
[14:35:59] Error: Function not registered: 'CreateDynamicObject'
[14:35:59] Error: Function not registered: 'CreateDynamicObjectEx'
[14:35:59] Error: Function not registered: 'SetDynamicObjectMaterial'
[14:35:59] Error: Function not registered: 'CountDynamicObjects'
[14:35:59] Error: Function not registered: 'CountDynamicPickups'
[14:35:59] Error: Function not registered: 'sscanf'
[14:35:59] Error: Function not registered: 'DestroyDynamicMapIcon'
[14:35:59] Error: Function not registered: 'cache_get_data'
[14:35:59] Error: Function not registered: 'cache_delete'
[14:35:59] Houses: 41
[14:35:59] Bussines: 8
[14:35:59] SBiz: 22
[14:35:59] Stuff Loaded
[14:35:59] Charity Loaded
[14:35:59] Turf: 24
[14:35:59] Papers: 10
[14:35:59] Dynamic Factions: 10
[14:35:59] Cars: 14
[14:35:59] Seifuri: 0
[14:35:59] Stock Loaded
[14:35:59] 1470 - Objects.
[14:35:59] 73 - Pickups.
[14:35:59] OnGameModeInit Loaded
[14:35:59] Script loaded - BlueGaming RPG v1.0
[14:35:59] Number of vehicle models: 77
PLS HELP
Re: Gangs turfs not show on /turfs -
Sn4ke2 - 03.09.2015
Help help help