Vice City Multiplayer

VC:MP => mIRC/pawn Scripting => Topic started by: [DGC]Doomer on August 09, 2010, 06:23:02 PM

Title: [FBS] is there a way to take weapons from player inventory away?
Post by: [DGC]Doomer on August 09, 2010, 06:23:02 PM
 is there a way to take weapons from player inventory away?
i need it for my rp server
Title: Re: [FBS] is there a way to take weapons from player inventory away?
Post by: [AoD]NC on August 09, 2010, 07:23:06 PM
Nur alle.
SetWeapon id 0 dann wirst du es sehen :).
Title: Re: [FBS] is there a way to take weapons from player inventory away?
Post by: [DGC]Doomer on August 09, 2010, 08:23:06 PM
cool danke das wollt ich eigentlich
bald ist mein server soweit dass ich ihn zum open testing stelle

EDIT:
still need help!
how i can make a !radaroff command for fbs
Title: Re: [FBS] is there a way to take weapons from player inventory away?
Post by: [AoD]NC on August 09, 2010, 09:28:50 PM
Vielleicht vcmp.removemarker aber bin mir nicht sicher, nie versucht.
Title: Re: [FBS] is there a way to take weapons from player inventory away?
Post by: Kill3R on August 10, 2010, 06:44:05 PM
 To show the player on the radar:

elseif ($3 == show) {
    if ($FBS.lin($1, $2) == $null) vcmp.privmsg $1 $2 You must either register or be logged in as Level 1.
     else {
      vcmp.setplayermarker $1 $2 [Team color]
         }
  }


To hide the player from the radar:

  elseif ($3 == hide) {
    if ($FBS.lin($1, $2) == $null) vcmp.privmsg $1 $2 You must either register or be logged in as Level 1.
      else {
      vcmp.removemarker $1 $2
          }
  }
Title: Re: [FBS] is there a way to take weapons from player inventory away?
Post by: [DGC]Doomer on August 10, 2010, 07:30:35 PM
thx