Help with pawno command issues.
#1

Код:
C:\Documents and Settings\Jeremy\Desktop\Backup of Carlito's Roleplay\gamemodes\crp.pwn(16768) : error 012: invalid function call, not a valid address
C:\Documents and Settings\Jeremy\Desktop\Backup of Carlito's Roleplay\gamemodes\crp.pwn(16768) : warning 215: expression has no effect
C:\Documents and Settings\Jeremy\Desktop\Backup of Carlito's Roleplay\gamemodes\crp.pwn(16768) : error 001: expected token: ";", but found ")"
C:\Documents and Settings\Jeremy\Desktop\Backup of Carlito's Roleplay\gamemodes\crp.pwn(16768) : error 029: invalid expression, assumed zero
C:\Documents and Settings\Jeremy\Desktop\Backup of Carlito's Roleplay\gamemodes\crp.pwn(16768) : fatal error 107: too many error messages on one line
Please tell me hjow to fix it or give me a working /b and /do cmd in ZCMD format.
Reply
#2

Post your code.. Can't do anything without it
Reply
#3

you miss some ) or ;
check this line 16768
Reply
#4

Код:
 CMD:do(playerid, params[])
{
    if(isnull(params))
        return SendClientMessage(playerid, COLOR_YELLOW, "SYNTAX: /do [enviornment]");

    new string[128];
    format(string, sizeof(string), "%s (( %s ))", params, GetName(playerid));
    SendNearbyMessage(playerid, COLOR_PURPLE, string);
    return 1;
}
Код:
CMD:b(playerid, params[])
{
    if(isnull(params))
        return SendClientMessage(playerid, COLOR_YELLOW, "SYNTAX: /b [message]");
    if(strlen(params) > 90)
        return SendClientMessage(playerid, COLOR_WHITE, "ERROR: Your message cannot be longer than 90 characters.");

    new string[128];
    format(string, sizeof(string), "(( %s(%d): %s ))", GetName(playerid), playerid, params);
    SendNearbyMessage(playerid, COLOR_PURPLE, string);
    return 1;
}

stock SendNearbyMessage(playerid, color, string[])
{
    new Float:Pos[3];
    GetPlayerPos(playerid, Pos[0], Pos[1], Pos[2]);
    foreach(Player, i)
    {
        if(IsPlayerInRangeOfPoint(i, 20, Pos[0], Pos[1], Pos[2]))
            SendClientMessage(i, color, string);
    }
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)