Ok..now here I have a code for a bullet to go shoot some one, on contact it deals damage...in the part where it check if the Defender is dead or not I want to use src but it gives me a compile time error..If i use usr (which I don't think I should) I get a runtime error which says there is no usr (0.null or something). Here is the coding
obj/shot
icon = 'Shot.dmi'
Dual_Pistol
icon_state = "XPisUziMG"
density = 1
Bump(mob/Defender)
if(istype(Defender))
Defender<<"You're being shot at!"
Defender.health -= 11
if(!src.client)
There is more but it's pointless to post it, it all uses either usr or src.
The error I get if I use src is:
Weapons.dm:635:error:src.client:undefined var
Thank you for your help
[Edit] I think I get the src error because it's an object, but that's just a wild guess.[Edit]