How can you take away a specific weapon?
Posted: Tue Oct 07, 2003 5:19 am
What would be the script to take away a specific weapon from a player?
MoHAA Mapping
http://map.moh-central.net/forum/
Code: Select all
local.trig = spawn trigger_multiple
local.trig targetname gotcha
local.trig.origin = ( X Y Z )
local.trig setsize ( -120.00 -120.00 0.00 ) ( 120.00 120.00 0.00 )
local.trig message "We got your pistol"
local.trig setthread _police
_police:
local.player = parm.other
$gotcha local.player take itemname
end