19.12.2014, 04:30
Onde tem erro nisso :/ tou tentando comeзar criar uma filterscript com coisas misturadas
pawn Код:
/* Eae pessoal tudo blz??
bom essa filterscript foi criada por franklin_qaeda :D espero que a FS te ajude em algumas coisas
acompanhe as atualizaзхes na SA-MP FORЪM :D
v0.1
*/
//VARIAVEIS FILTERSCRIPT
#include <a_samp>
#include sscanf2
#include dof2
#include zcmd
// FIM VARIAVEIS
// STRINGS
new Cachorro[ ] [] =
{
"[BpL] Franklin",
"[BpL] FILTERSCRIPT"
};
// COMEЗANDO A FILTERSCRIPT
public OnFilterScriptInit()
{
print("-FILTER SCRIPT CRIADA POR FRANKLIN- INICIADA");
return 1;
}
public OnFilterScriptExit()
{
print("-FILTERSCRIPT CRIADA POR FRANKLIN- UNLOADED");
return 1;
}
public OnPlayerConnect(playerid)
{
new string[128];
new Nome[24];
GetPlayerName(playerid, Nome, 24);
new Dia,Mes,Ano,Hora,Minuto,Segundo;
format(string, sizeof(string),"Senhor: %s Entrou no servidor. Data:[%d/%d/%d/] Hora:[%d/%d/%d]",Nome, Dia,Mes,Ano, Hora, Minuto,Segundo);
SendClientMessageToAll(0xFFB400FF, string);
return 1;
}
// quando o player desconecta do servidor :)
public OnPlayerDisconnect(playerid, reason)
{
SendClientMessageToAll(0xFFB400FF, "Alguem desconectou");
return 1;
}
// comeзando a area de comandos
public OnPlayerCommandText(playerid, cmdtext[])
{
if (strcmp("/morrer", cmdtext, true, 10) == 0)
{
SendClientMessage(playerid,0xFFB400FF, "Vocк digitou um command e morreu =O");
SetPlayerHealth(playerid, 0);
SetPlayerArmour(playerid, 0);
new rand = random(sizeof(Cachorro));
new string[128]
format(string, sizeof(string),"%s Foi morto", Cachorro[rand]);
SendClientMessage(playerid, 0xFFB400FF,string);
return 1;
}
return 0;
}
#endif
Код:
C:\Users\Tecnoplay\Desktop\GAMEMODES\Brasil Play Legends D - Cуpia\filterscripts\gmedo.pwn(57) : error 001: expected token: ";", but found "-identifier-" C:\Users\Tecnoplay\Desktop\GAMEMODES\Brasil Play Legends D - Cуpia\filterscripts\gmedo.pwn(63) : error 026: no matching "#if..." Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 2 Errors.