SA-MP Forums Archive
Help please - 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: Help please (/showthread.php?tid=489704)



Help please - adelmika - 23.01.2014

I can't understand what is this
Код:
../include/g_mysql.inc(428) : warning 235: public function lacks forward declaration (symbol "OnQueryError")
D:\(Ez.Game.Z)\Test\EG Roleplay\backup\gamemodes\EGRP_mysql.pwn(72364) : error 017: undefined symbol "Get3DZone"
D:\(Ez.Game.Z)\Test\EG Roleplay\backup\gamemodes\EGRP_mysql.pwn(72364) : warning 202: number of arguments does not match definition
D:\(Ez.Game.Z)\Test\EG Roleplay\backup\gamemodes\EGRP_mysql.pwn(72399) : error 017: undefined symbol "Get3DZone"
D:\(Ez.Game.Z)\Test\EG Roleplay\backup\gamemodes\EGRP_mysql.pwn(72399) : warning 202: number of arguments does not match definition
D:\(Ez.Game.Z)\Test\EG Roleplay\backup\gamemodes\EGRP_mysql.pwn(72429) : error 017: undefined symbol "Get3DZone"
D:\(Ez.Game.Z)\Test\EG Roleplay\backup\gamemodes\EGRP_mysql.pwn(72429) : warning 202: number of arguments does not match definition
D:\(Ez.Game.Z)\Test\EG Roleplay\backup\gamemodes\EGRP_mysql.pwn(72453) : error 017: undefined symbol "Get3DZone"
D:\(Ez.Game.Z)\Test\EG Roleplay\backup\gamemodes\EGRP_mysql.pwn(72453) : warning 202: number of arguments does not match definition
D:\(Ez.Game.Z)\Test\EG Roleplay\backup\gamemodes\EGRP_mysql.pwn(82541) : error 017: undefined symbol "Get3DZone"
D:\(Ez.Game.Z)\Test\EG Roleplay\backup\gamemodes\EGRP_mysql.pwn(82541) : warning 202: number of arguments does not match definition



Re: Help please - ACI - 23.01.2014

And you expect us to guess the code for you?


Re: Help please - adelmika - 23.01.2014

nah just tell me what i have to do


Re: Help please - adelmika - 23.01.2014

what is possible make this shit ??


Re: Help please - J4mmyHD - 23.01.2014

We can't help if we have no code to work with, either you show the code, or we can't help you.


Re: Help please - ACI - 23.01.2014

You wasted %5 of space for the data base for this forum. Show your includes.


Re: Help please - adelmika - 23.01.2014

Quote:

#include <a_samp>
#include <streamer>
#include <a_zones>
#include <foreach>
#include <yom_buttons>
#include <djson>
#include <progress>
#include <YSI\y_timers>
#include <ZCMD>
#include <sscanf2>
#include <audio>

ithink you mean these


Re: Help please - adelmika - 23.01.2014

Quote:

{
SetPVarInt(playerid, "TrackCar", 1);

new zone[MAX_ZONE_NAME];
Get3DZone(carPos[0], carPos[1], carPos[2], zone, sizeof(zone));
format(string, sizeof(string), "Your vehicle is located in %s.", zone);
SendClientMessageEx(playerid, COLOR_YELLOW, string);
SetPlayerCheckpoint(playerid, carPos[0], carPos[1], carPos[2], 15.0);
SendClientMessageEx(playerid, COLOR_WHITE, "Hint: Make your way to the checkpoint to find your vehicle!");
}



{
SetPVarInt(playerid, "TrackCar", 1);

new zone[MAX_ZONE_NAME];
Get3DZone(carPos[0], carPos[1], carPos[2], zone, sizeof(zone));
format(string, sizeof(string), "Your vehicle is located in %s.", zone);
SendClientMessageEx(playerid, COLOR_YELLOW, string);
SetPlayerCheckpoint(playerid, carPos[0], carPos[1], carPos[2], 15.0);
SendClientMessageEx(playerid, COLOR_WHITE, "Hint: Make your way to the checkpoint to find your car!");
}



{
SetPVarInt(playerid,"TrackCar",1);
new zone[MAX_ZONE_NAME];
Get3DZone(carPosF[0], carPosF[1], carPosF[2], zone, sizeof(zone));
format(string, sizeof(string), "Your vehicle is located in %s.", zone);
SendClientMessageEx(playerid, COLOR_YELLOW, string);
SetPlayerCheckpoint(playerid, carPosF[0], carPosF[1], carPosF[2], 15.0);
SendClientMessageEx(playerid, COLOR_WHITE, "HINT: Make your way to the checkpoint to find your car!");
}




{
SetPVarInt(playerid,"TrackCar",1);
new zone[MAX_ZONE_NAME];
Get3DZone(carPosF[0], carPosF[1], carPosF[2], zone, sizeof(zone));
format(string, sizeof(string), "Your vehicle is located in %s.", zone);
SendClientMessageEx(playerid, COLOR_YELLOW, string);
SetPlayerCheckpoint(playerid, carPosF[0], carPosF[1], carPosF[2], 15.0);
SendClientMessageEx(playerid, COLOR_WHITE, "HINT: Make your way to the checkpoint to find your car!");
}



{
new Float:X,Float:Y,Float:Z;
GetPlayerPos(EMSAccepted[i], X, Y, Z);
new zone[MAX_ZONE_NAME];
Get3DZone(X, Y, Z, zone, sizeof(zone));
format(string, sizeof(string), "Your patient is located in %s.", zone);
SetPlayerCheckpoint(i, X, Y, Z, 5);
}
here is the code