25.08.2013, 18:15
Bom estou tentando aprender mysql com uma das aulas do paulo...
Ai deu esse error ai , alguem pode me explicar como resolver e dizer oq eu estou errando ... vlw
Error e warning :
Ai deu esse error ai , alguem pode me explicar como resolver e dizer oq eu estou errando ... vlw
pawn Код:
#include <a_samp>
#include <a_mysql>
#pragma tabsize 4
#define SCM SendClientMessage
#define ASVEX AddStaticVehicleEx
#define SRC SendRconCommand
new connectt;
main()
{
print("------------EHEUHUEHEUHEUEHUE----------------------");
}
public OnGameModeInit()
{
SetGameModeText("Basic");
AddPlayerClass(0, 1958.3783, 1343.1572, 15.3746, 269.1425, 0, 0, 0, 0, 0, 0);
ASVEX(520,2028.6824,1340.5647,10.8203,268.5515,0,0,0);
connectt= mysql_connect("localhost", "root", "brasil world start", ""); //warning aqui
if(!mysql_ping(Connect)) print(""), SRC("exit"); //error aqui
return 1;
}
public OnGameModeExit()
{
return 1;
}
public OnPlayerRequestClass(playerid, classid)
{
SetPlayerPos(playerid, 1958.3783, 1343.1572, 15.3746);
SetPlayerCameraPos(playerid, 1958.3783, 1343.1572, 15.3746);
SetPlayerCameraLookAt(playerid, 1958.3783, 1343.1572, 15.3746);
return 1;
}
public OnPlayerCommandText(playerid, cmdtext[])
{
if (strcmp("/grana", cmdtext, true, 10) == 0)
{
GivePlayerMoney(playerid, 50000000);
SCM(playerid, -1, "Vocк ganhou grana .");
return 1;
}
if (strcmp("/Box", cmdtext, true, 10) == 0)
{
SetPlayerFightingStyle (playerid, FIGHT_STYLE_BOXING);
SCM(playerid, -1, "Vocк mudou seu estilo de luta !");
return 1;
}
return 0;
}
Error e warning :
Код:
error 017: undefined symbol "Connect" warning 204: symbol is assigned a value that is never used: "connectt"