ID:179409
 
Ok i want it so when someone uses a Item it says stuff.


obj/Item
Blah
icon='blah.dmi'

verb/blahblah()
del(src)
world << "[usr]: ehhhk"
sleep(100)
world << "[usr]: ooooooooo!"
sleep(50)
world << "[usr]: ahhhhhhhhh!"
sleep(100)
world << "[usr]: uhhhhh!"

Thats what i thought would work, but it doesnt. can anyone tell me why?

The seccond question is how would i make it so when someone wins in the arena they get 1 point in for the ranking system.. not sure if that makes much sense
Actually what do you want it to do. Say then delete the obj or del obj then say.
In response to Darke Rage
i want it to delete the object so they cant use it again, then say the stuff
In response to dbz73
dbz73 wrote:
i want it to delete the object so they cant use it again, then say the stuff


You have to delete it after it's all said because del() halts everything that the thing being deleted is doing.