20.07.2014, 13:48
Hello there,
Sorry for posting kinda much help threads but it's really needed.
Anyway, I'm getting 5 times the same error. The error is:
And the lines I get it on are on the following 3 lines:
Whole code:
Sorry for posting kinda much help threads but it's really needed.
Anyway, I'm getting 5 times the same error. The error is:
PHP код:
error 010: invalid function or declaration
PHP код:
if (strcmp("/AdminHouseHelp", cmdtext, true, 10) == 0)
if (pInfo[playerid][pAdminLevel] >= 1)
else {
PHP код:
if (strcmp("/adminhousehelp", cmdtext, true, 10) == 0)
{
if(pInfo[playerid][pAdminLevel]>= 1)
{
SendClientMessage(playerid, 0x33AA33AA , "/Ohouse1 = Opens House gate 1");
SendClientMessage(playerid, 0x33AA33AA , "/Chouse1 = Closes House gate 1");
SendClientMessage(playerid, 0x33AA33AA , "/Ohouse2 = Opens House gate 2");
SendClientMessage(playerid, 0x33AA33AA , "/Chouse2 = Closes House gate 2");
SendClientMessage(playerid, 0x33AA33AA , "/Ogarage1 = Opens garage gate 1");
SendClientMessage(playerid, 0x33AA33AA , "/Cgarage1 = Closes garage gate 1");
SendClientMessage(playerid, 0x33AA33AA , "/Ogarage2 = Opens garage gate 2");
SendClientMessage(playerid, 0x33AA33AA , "/Cgarage2 = Closes garage gate 2");
SendClientMessage(playerid, 0x33AA33AA , "/Ahouse = teleports to admin house!");
}
}
else {
SendClientMessage(playerid, COLOR_RED, "You have to be atleast level 1 to use this command!");
}