ID:178231
Jun 7 2002, 1:02 am
|
|
mob Skater icon = 'before skating.dmi' icon_state = "" loc = locate (1,2,3) t says it expect the loc = locate (1,2,3) to be a constant expression |
Copyright © 2024 BYOND Software.
All rights reserved.
So
mob/Skater/Login()
src.loc = locate(1,2,3)
..()
if it's a player.
and if it's not... uhh, this is just off the top of my head, but it'd probably look something like this.
world/New()
..()
var/mob/M = new mob/Skater
M.loc = locate(1,2,3)