Kann mir jemand bei diesem Script helfen???:
#include <a_samp>
#define FILTERSCRIPT
#if defined FILTERSCRIPT
new RandomMSG[][] =
{
"LS Turf Wars commands",
"/help | /turfhelp | /cmds | /credits",
"/pm <playerid> <message> | /tpm <message>",
"/buyweapon <weaponid> <amount> | /list | /list2",
"/givecash <playerid> <amount> | /bounties"
"/hitman <playerid> <amount>",
"/sellpoints <amount>",
"/report <playerid> <reason> | /me <message>",
"/tp - for Teleports",
"car - carselecter",*/
};
forward SendMSG();
public OnFilterScriptInit()
{
print("\n--------------------------------------");
print("LS Turf Wars Ino Fitlerscript by gtaturke54");
print("--------------------------------------\n");
return 1;
}
public OnFilterScriptExit()
{
return 1;
}
public OnGameModeInit()
{
SetTimer("SendMSG",600000,1);
return 1;
}
public SendMSG()
{
SendClientMessageToAll(0x33CCFFAA, RandomMSG[random(sizeof(RandomMSG))]);
return 1;
}
#endif
Das ist das Problem:
C:\Users\*Zensiert*\Desktop\info.pwn(14) : error 001: expected token: "}", but found "-string-"
C:\Users\*Zensiert*\Desktop\info.pwn(19) : error 010: invalid function or declaration
Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase
2 Errors.
Kann mir jemand helfen???