Say !inv 1 To activate invisible
Say !inv 0 To deactivate invisible
Approved by GeoB99
Download
854 b, 886 Downloads
parse("equip "..yourid.." 84 (or sth like that)")
---Splinter Cell mode script by Mr_Tiger--- if sample==nil then sample={} end sample.gl={} sample.gh={} addhook("always","sample.gl.always") addhook("say","sample.gh.say") function sample.gl.always() parse("sethealth 1 250") parse("setmaxhealth 1 250") end function sample.gh.say(p,txt) if (txt=="!Inv 0") then freehook("always","sample.gl.always"); end if (txt=="!inv 0") then parse("killplayer 1"); end if (txt=="!inv 1") then addhook("always","sample.gl.always"); end if (txt=="!inv 1") then parse("equip 1 84"); end end