It means that you haven't formally declaired your variable. I find that this usually happens inside functions.
ie.
test()
function test()
print b
endfunction
This gives me an error. But if I do the following...
test()
function test()
b as integer
print b
endfunction
I've now formally declaired the variable b as an integer. No more error.
If you're declariing your variables outside functions then do it at the top of your code. Befor you dim arrays even.
ie.
a as integer
b as byte
c as string
d as dword
dim a(10) as integer
dim b(10) as byte
dim c(10) as string
dim d(10) as dword
then you can assign values to your variables without any problem.
ie.
a=10
a(a)=a
Quote: " Timesoft - Your wife is death. How? NO idea.
But it is murder. REVENGE!!!!!!!!!"
Hands down the funniest synopsis for a game ever. All your base are belong to us!