world/var/Checking = 0 //This defines the variable Checking
world/var/list/AFK = list() //This defines the variable AFK to be a list
Problem description: The problem is that it says that Checking: variable declaration not allowed here, same thing with AFK I know if its possible to use the global var such as this:
var/Checking = 0
var/list/AFK = list()
But I can't use that so how would I go about defining a world variable?