little help =D
#1

pawn Код:
public counter()
{
    count++;
    TextDrawSetString(Counttext,count);
    return 1;
}
Код:
C:\Users\Carlos\Desktop\New folder\filterscripts\gates.pwn(61) : error 035: argument type mismatch (argument 2)
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase
1 Error.
error line:
pawn Код:
TextDrawSetString(Counttext,count);
Reply
#2

pawn Код:
public counter()
{
    count++;
    new string[8];
    format(string,sizeof(string),"%d",count);
    TextDrawSetString(Counttext,string);
    return 1;
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)