Warning 204....
#1

warning 204: symbol is assigned a value that is never used: "gate2"
warning 204: symbol is assigned a value that is never used: "gate"
warning 204: symbol is assigned a value that is never used: "gate1"

Help i don't know how to fix this

Код:
new gate1;
new gate2;
new gate; 

gate = CreateDynamicObject(980, 786.29541, -1152.44470, 25.66892,   0.00000, 0.00000, 270.56699); 
gate1 = CreateDynamicObject(980, 664.91754, -1309.57666, 15.30691,   0.00000, 0.00000, 180.15981); 
gate2 = CreateDynamicObject(980, 659.49573, -1227.08826, 17.05670,   0.00000, 0.00000, 60.71362);
Reply
#2

Put this at the top of the script if it REALLY annoys you,
#pragma unused gate
#pragma unused gate1
#pragma unused gate2

It's only a warning, though. It means that you assign the variable but never actually use the variable anywhere else.
Reply
#3

Thank u
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)