Author Topic: [FBS] is there a way to take weapons from player inventory away?  (Read 3188 times)

0 Members and 1 Guest are viewing this topic.

Offline [DGC]Doomer

  • Wiseguy
  • **
  • Posts: 64
    • View Profile
 is there a way to take weapons from player inventory away?
i need it for my rp server

Offline [AoD]NC

  • VC:MP Beta Tester
  • VC:MP Veteran
  • *
  • Posts: 616
  • AoD forever!
    • View Profile
    • KURWA MAĆ
Re: [FBS] is there a way to take weapons from player inventory away?
« Reply #1 on: August 09, 2010, 08:23:06 pm »
Nur alle.
SetWeapon id 0 dann wirst du es sehen :).

Offline [DGC]Doomer

  • Wiseguy
  • **
  • Posts: 64
    • View Profile
Re: [FBS] is there a way to take weapons from player inventory away?
« Reply #2 on: August 09, 2010, 09: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
« Last Edit: August 09, 2010, 09:33:32 pm by [DGC]Doomer »

Offline [AoD]NC

  • VC:MP Beta Tester
  • VC:MP Veteran
  • *
  • Posts: 616
  • AoD forever!
    • View Profile
    • KURWA MAĆ
Re: [FBS] is there a way to take weapons from player inventory away?
« Reply #3 on: August 09, 2010, 10:28:50 pm »
Vielleicht vcmp.removemarker aber bin mir nicht sicher, nie versucht.

Offline Kill3R

  • VC:MP Beta Tester
  • Street Thug
  • *
  • Posts: 28
  • uhm... iam n00b, what to type here???
    • View Profile
    • Hunting-Arena
Re: [FBS] is there a way to take weapons from player inventory away?
« Reply #4 on: August 10, 2010, 07:44:05 pm »
 To show the player on the radar:

 
Code: [Select]
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:

 
Code: [Select]
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
          }
  }

Regards,
Kill3R

Offline [DGC]Doomer

  • Wiseguy
  • **
  • Posts: 64
    • View Profile
Re: [FBS] is there a way to take weapons from player inventory away?
« Reply #5 on: August 10, 2010, 08:30:35 pm »
thx