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

Try this

pawn Код:
forward TextTime(playerid);
CMD:text(playerid,params[])
{
    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(Texti, announce);
    TextDrawShowForPlayer(playerid, Texti);
    SetTimer("TextTime",4000,false);
    return 1;}
public TextTime(playerid)
{
    TextDrawHideForPlayer(playerid, Texti);
}
Put this under OnGameModeInit callback

pawn Код:
Texti = TextDrawCreate(322.000000, 135.000000, "message");
    TextDrawAlignment(Texti, 2);
    TextDrawBackgroundColor(Texti, 255);
    TextDrawFont(Texti, 3);
    TextDrawLetterSize(Texti, 0.670000, 3.099998);
    TextDrawColor(Texti, -1);
    TextDrawSetOutline(Texti, 1);
    TextDrawSetProportional(Texti, 1);
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: 1 Guest(s)