help with cd simple! pz he here
#1

hello all i made a code but its get error in his line

pawn Код:
public Count()
{
    new counter = 3, string[128];
    counter--;
    format(string, sizeof(string),"~r~%d", counter);
    GameTextForAll(1000, 5); // here one error
    if(counter == 0)
    {
        GameTextForAll(3000, 3, "~g~Gooooo!!!"); // 2nd error here
        KillTimer(count);
    }
    return 1;
}
pawn Код:
C:\Users\Administrator\Desktop\team wars\gamemodes\04jeeprace.pwn(204) : error 035: argument type mismatch (argument 1)
C:\Users\Administrator\Desktop\team wars\gamemodes\04jeeprace.pwn(207) : error 035: argument type mismatch (argument 1)
Pawn compiler 3.2.3664          Copyright (c) 1997-2006, ITB CompuPhase


2 Errors.
Reply
#2

pawn Код:
GameTextForAll(string, 1000, 5);

GameTextForAll("~g~Gooooo!!!", 3000, 3);
pawn Код:
public Count()
{
    new counter = 3, string[128];
    counter--;
    format(string, sizeof(string),"~r~%d", counter);
    GameTextForAll(string,1000, 5); // here one error
    if(counter == 0)
    {
        GameTextForAll("~g~Gooooo!!!",3000, 3); // 2nd error here
        KillTimer(count);
    }
    return 1;
}
@Down
Frajer pompka!
Reply
#3

Код:
public Count()
{
    new counter = 3, string[128];
    counter--;
    format(string, sizeof(string),"~r~%d", counter);
    GameTextForAll(string,1000, 5); // here one error
    if(counter == 0)
    {
        GameTextForAll("~g~Gooooo!!!",3000, 3); // 2nd error here
        KillTimer(count);
    }
    return 1;
}


@UP: Hehe, ale za to dokładnie pokazałem
Reply
#4

Read Here
Reply
#5

can anyone make a new count down timer which is auto start ongamemodeinint after 15000 sec plzzzzzzzzz
Reply
#6

nope what i read here i am teling about count down timer plz help how i make a countdown tiemr
Reply
#7

OnGameModeInit:

pawn Код:
SetTimer("Count", 15000, true);
Reply
#8

i am not spaming plz help me here ho i make a sucess code
Reply
#9

Then tell me what do you wan't exactly. Write a one decent message.
Reply
#10

i want countdown timer when count downtimer startfreeze player after start race unfeeze player simple
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)