error 028: invalid subscript (not an array or too many subscripts)
#3

you missing [playerid]
pawn Код:
//at top of script
new Text:Text[MAX_PLAYERS];
//zmcd
CMD:text(playerid,params[])
{
    Text[playerid] = TextDrawCreate(322.000000, 135.000000, "message");
    TextDrawAlignment(Text[playerid], 2);
    TextDrawBackgroundColor(Text[playerid], 255);
    TextDrawFont(Text[playerid], 3);
    TextDrawLetterSize(Text[playerid], 0.670000, 3.099998);
    TextDrawColor(Text[playerid], -1);
    TextDrawSetOutline(Text[playerid], 1);
    TextDrawSetProportional(Text[playerid], 1);
    if(!IsAdmin(playerid, 1)) return ErrorMsg(playerid);
    new announce[41];
    if(sscanf(params, "s", announce)) return Usage(playerid, "/text [message]");
    format(announce, sizeof(announce), "%s", announce);
    TextDrawSetString(Text[playerid], announce);
    TextDrawShowForPlayer(playerid, Text[playerid]);
    SetTimer("TextTime",4000,false);
    return 1;
}

forward TextTime(playerid);
public TextTime(playerid)
{
    TextDrawDestroy(Text[playerid]);
}
Reply


Messages In This Thread
error 028: invalid subscript (not an array or too many subscripts) - by SnG.Scot_MisCuDI - 21.06.2012, 04:50
Re: error 028: invalid subscript (not an array or too many subscripts) - by Ironboy - 21.06.2012, 05:16
Re: error 028: invalid subscript (not an array or too many subscripts) - by Skaizo - 21.06.2012, 05:17

Forum Jump:


Users browsing this thread: 2 Guest(s)