Posts: 131
Threads: 29
Joined: Mar 2014
Код:
D:1\Ay0uB\Bureau\NOUVEA~2\1\X1treme.pwn(5250) : warning 203: symbol is never used: "Count"
D:\DOCUME~1\Ay0uB\Bureau\NOUVEA~2\GAMEMO~1\X1treme.pwn(5250) : warning 203: symbol is never used: "CountText"
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
2 Warnings.
That When i Have Add This
Код:
new Count = 5;
new CountText[5][5] ={
"~r~1",
"~r~2",
"~r~3",
"~w~4",
"~w~5"
};
Posts: 727
Threads: 79
Joined: Mar 2012
Reputation:
0
Yes you have only defined the variable, but you never requested it (used it).
So it gives you a warning because pawno is wondering why you define a variable that you never use.
Anyway you can ignore that warning if you will use those variables later on, else you can remove those variables.
Posts: 131
Threads: 29
Joined: Mar 2014
Yes But How To Fix it new Count = 5;
new CountText[5][5] ={
"~r~1",
"~r~2",
"~r~3",
"~w~4",
"~w~5"
}; is For Start /Countdown cmd For Players
Posts: 983
Threads: 98
Joined: Feb 2012
Reputation:
0
I don't think that you would need to make an array for such command.
You need to use SetTimer/SetTimerEx (depends on the usage) instead..