ID:261938
 
turf
strongenter
enterstronarea
density = 1
Enter()
if(usr.maxpowerlevel => 100000000)
usr.loc=locate(25,120,19)
else
alert("[usr] Your Powerlevel Appears to be more then 100,000,000 so You may not enter.

i get these errors:
Noob.dm:30:error: missing left-hand argument to >





Thxs in advance.
Your problem is that you are using usr in Enter(). Look up the reference entry for what you should use.

Additionally, set the density to 0, then use "return 0" to prevent them from entering, or "return ..()" to let them enter.

Also, alert() has a first argument for who it goes to. It defaults to usr, which is wrong.
In response to Garthor
In addition to what Garthor said, it's <code>>=</code> not <code>=></code>.