Author Topic: Help With Pickups  (Read 13680 times)

0 Members and 1 Guest are viewing this topic.

Offline Darkness

  • Wiseguy
  • **
  • Posts: 53
    • View Profile
Help With Pickups
« on: December 29, 2008, 10:17:25 am »
Hello, I needed help with pickups, I want to do is to take less to appear.
 
And How To create Teleports Pickup??

And how to make the camera pickup count laps?

Help me Please

Thx

Offline Darkness

  • Wiseguy
  • **
  • Posts: 53
    • View Profile
Re: Help With Pickups
« Reply #1 on: December 29, 2008, 10:34:07 am »
and ... How to create !Fix command  ;D

Offline [NoN]Toiletduck

  • Wiseguy
  • **
  • Posts: 65
    • View Profile
Re: Help With Pickups
« Reply #2 on: December 29, 2008, 11:08:36 am »
!fix for cars in GUS?

If that is what you want then:

Code: [Select]
elseif ($2 == !Fix) {
   vcmp.msg %id Vehicle is being repaired.
   .timer 1 2 vcmp.setvehiclehp $vcmp.vehicle(%id,name) 100
 }

One thing. 0.3z's setvehiclehp is bugged and it might not work.
« Last Edit: December 29, 2008, 11:22:05 am by [NoN]Toiletduck »

Offline Darkness

  • Wiseguy
  • **
  • Posts: 53
    • View Profile
Re: Help With Pickups
« Reply #3 on: December 29, 2008, 11:33:00 am »
Thanks , but the car has burning with !fix :S

Offline [NoN]Toiletduck

  • Wiseguy
  • **
  • Posts: 65
    • View Profile
Re: Help With Pickups
« Reply #4 on: December 29, 2008, 02:02:20 pm »
It isn't working because of the 03z bug.

Offline thijn

  • LU testers
  • VC:MP Veteran
  • *
  • Posts: 667
  • Im proud to be pro.
    • View Profile
    • Vice Underdogs
Re: Help With Pickups
« Reply #5 on: December 29, 2008, 05:21:52 pm »
try using this:
Code: [Select]
  elseif (!fix == $2) {
    var %a = 0
    var %b = $vcmp.vehicle(%id,id),%c = $vcmp.location(%id)
    if ($vcmp.vehicle(%id,id) != 0) {
      vcmp.setlocation %id %c %a
      vcmp.setvehicleloc %b -556.0687 -739.7618 5.1515
      vcmp.msg %id Please wait while we repair your car...
      vcmp.announce %id ~b~Pleas wait..
      !.timer 1 9 /vcmp.setvehicleloc %b %c
      !.timer 1 9 /vcmp.setvehicle %id %b
      !.timer 1 9 /vcmp.msg %id Thank you for your patience. You car has been repaired.
      !.timer 1 9 /vcmp.announce %id ~b~You car has been Repaired!
    }
    else vcmp.msg %id You can only fix vehicles! Not yourself!
  }
« Last Edit: December 30, 2008, 12:05:45 pm by thijn »

Offline Knucis

  • Wiseguy
  • **
  • Posts: 82
  • u wot m9
    • View Profile
Re: Help With Pickups
« Reply #6 on: December 29, 2008, 05:48:23 pm »

Offline Darkness

  • Wiseguy
  • **
  • Posts: 53
    • View Profile
Re: Help With Pickups
« Reply #7 on: December 30, 2008, 02:38:04 am »
Ohh , very Thx all =)

Offline Darkness

  • Wiseguy
  • **
  • Posts: 53
    • View Profile
Re: Help With Pickups
« Reply #8 on: December 30, 2008, 02:43:32 am »
mmm Thijn !fix commands haves bug :S

Offline thijn

  • LU testers
  • VC:MP Veteran
  • *
  • Posts: 667
  • Im proud to be pro.
    • View Profile
    • Vice Underdogs
Re: Help With Pickups
« Reply #9 on: December 30, 2008, 12:06:34 pm »
sorry, Forgot one thing, Use this:
Code: [Select]
  elseif (!fix == $2) {
    var %a = 0
    var %b = $vcmp.vehicle(%id,id),%c = $vcmp.location(%id),%d = $vcmp.location(%id,x) $vcmp.location(%id,y) $calc($vcmp.location(%id,z) - 1.12)
    if ($vcmp.vehicle(%id,id) != 0) {
      vcmp.setlocation %id %c %a
      vcmp.setvehicleloc %b -556.0687 -739.7618 5.1515
      vcmp.msg %id Please wait while we repair your car...
      vcmp.announce %id ~b~Pleas wait..
      !.timer 1 9 /vcmp.setvehicleloc %b %d
      !.timer 1 9 /vcmp.setvehicle %id %b
      !.timer 1 9 /vcmp.msg %id Thank you for your patience. You car has been repaired.
      !.timer 1 9 /vcmp.announce %id ~b~You car has been Repaired!
    }
    else vcmp.msg %id You can only fix vehicles! Not yourself!
  }

Offline Darkness

  • Wiseguy
  • **
  • Posts: 53
    • View Profile
Re: Help With Pickups
« Reply #10 on: December 31, 2008, 12:47:30 am »
O Thx you very much =) Thijn

Other : how to reduce spawn pickups time?

Offline thijn

  • LU testers
  • VC:MP Veteran
  • *
  • Posts: 667
  • Im proud to be pro.
    • View Profile
    • Vice Underdogs
Re: Help With Pickups
« Reply #11 on: January 01, 2009, 06:03:53 pm »
use on pickup:
.timer 1 <the secs u want> dll rcondll.dll RconCommand spawnpickup $2

Offline Darkness

  • Wiseguy
  • **
  • Posts: 53
    • View Profile
Re: Help With Pickups
« Reply #12 on: January 02, 2009, 12:40:21 am »
xD , Thx you "you are the best" =)

Offline Darkness

  • Wiseguy
  • **
  • Posts: 53
    • View Profile
Re: Help With Pickups
« Reply #13 on: January 02, 2009, 08:03:40 am »
How te create Counts Laps Pickup with Camera pickup (ID:382)

 Please Help Me =)

Offline Darkness

  • Wiseguy
  • **
  • Posts: 53
    • View Profile
Re: Help With Pickups
« Reply #14 on: January 02, 2009, 09:41:28 am »
Please!xD