countdown cmd help..
#1

Nvm lol i forgot the those things "
i did GameTextForAll(3,1500,3);
GameTextForAll(2,1500,3);
GameTextForAll(1,1500,3);
insted
GameTextForAll("3",1500,3);
GameTextForAll("2",1500,3);
GameTextForAll("1",1500,3);
Reply
#2

Show the error.
Reply
#3

error 035: argument type mismatch (argument 1)
error 035: argument type mismatch (argument 1)
error 035: argument type mismatch (argument 1)
Reply
#4

Try:

pawn Код:
GameTextForAll(i,"3",1500,1);
GameTextForAll(i,"2",1500,1);
GameTextForAll(i,"1",1500,1);
You also need something like:

pawn Код:
for(new i=0;i<MAX_PLAYERS;i++)
Reply
#5

It is expecting a string, your are supplying it an integer:

Код:
GameTextForAll(string, integer, integer);
Check the definition on the wiki or in your function list in Pawno (right panel).
Reply
#6

Quote:
Originally Posted by Stigg
Посмотреть сообщение
Try:

pawn Код:
GameTextForPlayer(playerid,"3",1500,1);
GameTextForPlayer(playerid,"2",1500,1);
GameTextForPlayer(playerid,"1",1500,1);
i want to all players not to the player that did that cmd..
Reply
#7

Quote:
Originally Posted by Omer
Посмотреть сообщение
i want to all players not to the player that did that cmd..
Changed post try that.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)