ID:261547
 
var
Time = "[Time2]:00"
AMPM = "A.M"
RolePlaying = 0
SongPlay
WorldPlayers = 0
ServerHost = null
RoleWait = 1000
PasswordOn = 1
Password = "UMMMNOTHINGTOSEEHEREPASSWORDISNOTHERE"
Time2 = 1

Why is it saying Time2 warning use of Time2 precedes its definition and Time warning definition is here.
Thief jack wrote:
var
Time = "[Time2]:00" <font color=yellow>use of...</font>
AMPM = "A.M"
RolePlaying = 0
SongPlay
WorldPlayers = 0
ServerHost = null
RoleWait = 1000
PasswordOn = 1
Password = "UMMMNOTHINGTOSEEHEREPASSWORDISNOTHERE"
Time2 = 1 <font color=yellow>definition</font>

Why is it saying Time2 warning use of Time2 precedes its definition and Time warning definition is here.

Use of Time2 precedes its definition.
In response to Skysaw (#1)
Mind explaining that?
In response to Thief Jack (#2)
var
Time2 = 1 //this needs to be here before time
Time = "[Time2]:00"
AMPM = "A.M"
RolePlaying = 0
SongPlay
WorldPlayers = 0
ServerHost = null
RoleWait = 1000
PasswordOn = 1
Password = "UMMMNOTHINGTOSEEHEREPASSWORDISNOTHERE"
In response to Xzar (#3)
D'oh thanks