Author Topic: Jobs for VCMP  (Read 3804 times)

0 Members and 1 Guest are viewing this topic.

Offline IvanSantos96

  • Street Thug
  • *
  • Posts: 18
  • Visit my website for GTA SA & VC servers
    • View Profile
    • My GTA Server
Jobs for VCMP
« on: August 06, 2010, 05:47:13 pm »
I have started my server with the gamemode GUPS 1.16a, I have modded the script but now I want a way to earn money, like jobs!
So, It's possible? Anyone know a script in pawn to do it?

Offline [AoD]NC

  • VC:MP Beta Tester
  • VC:MP Veteran
  • *
  • Posts: 616
  • AoD forever!
    • View Profile
    • KURWA MAĆ
Re: Jobs for VCMP
« Reply #1 on: August 06, 2010, 10:18:07 pm »
"Jobs" are relative easy to do. Mostly you need a destination/target or whatever to do and a limited amount of time to do the job.

For example there was "Pizza delivery" at NoN server. It looked like that:
1. You go to Well Stacked Pizza, type some command.
2. It teleports you to a place, where the pizza should be delivered.
3. Now you have to go to the place and type !deliver.
4. If you are fast, you will earn a tip. However you earn money.

Offline IvanSantos96

  • Street Thug
  • *
  • Posts: 18
  • Visit my website for GTA SA & VC servers
    • View Profile
    • My GTA Server
Re: Jobs for VCMP
« Reply #2 on: August 07, 2010, 02:11:48 pm »
Yeah but you can give-me the codes to put in the gamemode?

Offline IvanSantos96

  • Street Thug
  • *
  • Posts: 18
  • Visit my website for GTA SA & VC servers
    • View Profile
    • My GTA Server
Re: Jobs for VCMP
« Reply #3 on: August 09, 2010, 08:40:16 pm »
anyone?

Offline [DGC]Doomer

  • Wiseguy
  • **
  • Posts: 64
    • View Profile
Re: Jobs for VCMP
« Reply #4 on: August 09, 2010, 09:24:23 pm »
noone will give you these codes because its a hard work to code that ;)
try to make a code yourself and post it here so we can debug it!

Offline [AoD]NC

  • VC:MP Beta Tester
  • VC:MP Veteran
  • *
  • Posts: 616
  • AoD forever!
    • View Profile
    • KURWA MAĆ
Re: Jobs for VCMP
« Reply #5 on: August 09, 2010, 10:37:32 pm »
I personally suck at pawn, so the only I can help is just giving advices. I add here some infos how to do the pizza missions.

1. You go to Well Stacked Pizza, type some command. -> typing command !pizza, check if you are in the specified location, you can use GetPlayerPos and a XYZ point to calculate the distance between the player and the point, check if the distance is short, then start mission.

2. It teleports you to a place, where the pizza should be delivered. -> easy, a message "ok now you need to get here" and chooses one of e.g. 10 places. Use timer to take player back to the Well Stacked Pizza.
3. Now you have to go to the place and type !deliver. -> start a 1 minute timer that saves some information.
4. If you are fast, you will earn a tip. However you earn money. -> type !deliver, check location. If no data was saved with the 1 minute timer, give player 100 dollars. If there were something, that it tooks too long, then only 50.

Hope that maybe that helps more.