Code:
Problem description:
I've done everything possible to the code, remade it, and EVERYTHING, but the game won't load! Whenever te Dream Seeker opens, It displays black where the game SHOULD be. Everything else appears.
Here's my code:
//Wildcat Version 0.01
mob
Login()
icon_state=gender
icon='person.dmi'
var
HP=100
verb
attack(mob/M as mob in oview(1))
usr<< "You attacked [M]!"
oview()<< "[usr] attacks [M]!"
var/damage=rand(5,12)
world<<"[damage] damage is dealt!"
M.HP-=damage
M.Deathcheck()
say(msg as text)
world<< "[usr] says: [msg]"
proc
Deathcheck()
if(HP<=0)
world<< "[src] has been proven to be mortal after all."
del(src)
turf
icon= 'grass.dmi'
ID:263483
Feb 10 2007, 12:37 pm
|
|
Feb 10 2007, 12:38 pm
|
|
Either set the player's location in Login(), or a procedure called by it, or place ..() somewhere in Login().
|
mob You didnt say where to put the player |
In response to Popisfizzy
|
|
...I just did the tutorial yesterday...I knew I forgot something! Thanks! So much!
|