Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Kill3R

Pages: 1 [2]
16
mIRC/pawn Scripting / Re: props id invalid''''wtf!!!help plz
« on: December 15, 2010, 06:08:02 pm »
O_o o_O OMG sure FBS IS GOOD Grrr

it is  ;), if you know how to use it  ;D

VCHA is running on FBS v0.2

17
Support / Re: Server memory leak
« on: October 13, 2010, 04:35:32 pm »
hi juppi hw are u can u tell me how to create a server

 :P rofllmaoxD  ;D

@Devs: please do something regarding the memory leak  :) , the fix is needed ASAP

18
 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
          }
  }

19
mIRC/pawn Scripting / Re: some has a !repair command for FBS?
« on: January 10, 2010, 03:23:01 pm »
i guess it need not be, that much complicated  :)

; When player is in the vehicle
elseif ($3 == repair) {
if ($vcmp.vehicle($1, $2) == 0) vcmp.msg $1 $2 You need to be in a vehicle
else {
vcmp.setvehiclehealth $1 $vcmp.vehicle($1, $2) 1000.0000
vcmp.msg $1 $2 Your vehilce has been repaired
   }
}

; When the player is not in the vehicle
elseif  ($3 == repair) {
if (!$4) vcmp.msg $1 $2 Syntax : /c $3 <CarID>
else {
vcmp.setvehiclehealth $1 $4 1000.0000
vcmp.msg $1 $2 CarID $chr(40) $4 ) has been repaired
   }
}

Pages: 1 [2]