Code:
athame
var/thrownby
icon = 'obj.dmi'
icon_state = "sathame"
density = 1
verb
Throw()
thrownby = usr
walk(src,usr.dir,0)
sleep(20)
if(src)
del(src)
Get()
set src in oview(1)
src.loc = usr
usr << "You get a [src]."
Drop()
set src in usr
src.loc = usr.loc
usr << "You drop a [src]."
Bump(M)
if (istype(usr))
del(src)
if(istype(M,/mob/Player/))
M << "You've been hit by [src.thrownby]!"
oview(M) << "[M] has been hit by [src.thrownby]!"
var/mob/Player/user = src.thrownby
var/mob/Player/target = M
target.power -= user.power
call(M,/mob/Player/proc/Deathcheck)()
del(src)
Problem description:error spam when i hit myself
ID:145320
Apr 17 2006, 10:21 am
|
|
In response to Lummox JR
|
|
Something tells me that this guy works for Geiko!
|
No put code outside <dm> tags. Unga wungh.
Lummox JR