ID:167233
 
I get alot of runtime errors for this...
mob/var/la = /mob/pikachu
mob/var/eat = /mob/pikaeat

mob
proc
action()
src<<"<b>\red It was a nice summer day..."
sleep(20)
client.eye = locate(1,1,1)
lala_move()
proc
lala_move()
step(la,EAST)
sleep(10)
src<<"<b>\blue pika pikachu!"
step(la,EAST)
sleep(30)
src<<"<b>\red This, this is the feeding time for the cows."
sleep(20)
new/mob/lalaeat(pika)
del lala
sleep(60)
Whats wrong whats wrong ...
What you mean whats wrong ?
Better say what errors it says, or what don't apper/work..

And say what result you want from this!!
la isn't in existance when you call the proc. You need to have something like "la = new". right now, la is just an uninstanciated variable.