Lemonade* ^^
Hi, how do i make so if you gonna Tie someone you need to have the Item “Rope” in your Inventory. atm it is team, but i wanna change to Item.
if( IsCombine( LocalPlayer() ) and !IsCombine( target ) ) then
ContextMenu:AddOption("Tie Up", function() LocalPlayer():ConCommand("rp_ziptie " .. target:EntIndex()) end);
if(target:GetNWInt("tiedup") == 1) then
ContextMenu:AddOption("Untie", function() LocalPlayer():ConCommand("rp_ziptie " .. target:EntIndex()) end);
end