Jump to content

Transporter mod


xRain.Awesomex

Recommended Posts

xRain.Awesomex

Hey, does anyone know where I can find a Transporter script mod? [Just like in the movies]
I tried searching for similar mods, but I can't find any.

So, the idea of the mod I'm looking for is that you work as a transporter, doing jobs such as deliveries, VIP transport, and getaway driver. Of course they'll pay you a lot of cash. If anyone knows mods like this, can you link it to me. ^^ Or better, can someone make a script like this one? Thanks :)

Link to comment
Share on other sites

xRain.Awesomex

If anyone is interested in making a script like this one, here are my ideas:

1.) To start the job, you go to a payphone and press 'E' (Just like this mod http://www.gta4-mods.com/script/assassination-mod-v10-f22942). Optional: the player will do fancy dialing animations and other fancy stuff like that.

 

2.) A small window on the top left screen will appear showing the types of jobs you can choose from (EXTRAS are optional)

a. Delivery - you will be asked to take a package from point A to point B within a time limit. (the car you use to deliver should not get destroyed during the delivery)

*EXTRAS: Your client might ask for what type of vehicle you should use, and within what time it should be delivered

 

b. VIP Driver - you will be asked to take a VIP from point A to point B withing a certain time. (you should not let the VIP get killed, otherwise, it's a 3-star wanted level; you should also not exceed the time limit, else, you will get a 3-star wanted level for 'kidnapping')

*EXTRAS: Your client might ask for what type of vehicle you should use, and within what time the VIP should get to his/her destination

 

c. Getaway driver - you will be asked to park in front of a bank (map will have a blip showing what bank) within a time limit. If you fail to park in front of a bank within a time limit, screen will show "Bank Heist failed" or "Mission Failed". If you get there in time, 3 men with robbery masks, bags and weapons will come out of the bank, and go inside your car as passengers. You will immediately get a 3 or 4 star wanted level, and your job is to evade the cops and remove your wanted level. During the cop chase, the robbers will aid you by gunning down nearby policemen. Once you remove your wanted level, you will have to take the robbers into a certain point in the map, then you get paid. You are required to take a 4-door vehicle to the job.

 

3.) After choosing your mission, a blip appears in the map, and a text might appear showing the clients specifications for the job (see EXTRAS above).

 

4.) If you accomplish the job properly, you get paid tons of money. If you fail the mission, you will be suspended from your job for 24 in-game hours.

Link to comment
Share on other sites

xRain.Awesomex

Really? :D I would really appreciate it though if you had the time. But oh well, thanks anyway. XD I'm still trying to learn how to code in GTA IV. If I ever learn how, this'll be the first mod I'll release.

Link to comment
Share on other sites

LordOfTheBongs

Really? :D I would really appreciate it though if you had the time. But oh well, thanks anyway. XD I'm still trying to learn how to code in GTA IV. If I ever learn how, this'll be the first mod I'll release.

 

u can learn if u practice everyday and are willing to read a lot about errors u will run into... gtaiv taught me how to program, before gtaiv i didnt even know what c# was

 

this was a website i referred to a lot when i was new... www.dotnetperls.com they explain stuff so noobs can understand

 

start by trying to make your own trainer... simple functions that trigger by keypress is a good way to get familiar with gta native functions and the scripthookdotnet native function wrappers

Link to comment
Share on other sites

 

Really? :D I would really appreciate it though if you had the time. But oh well, thanks anyway. XD I'm still trying to learn how to code in GTA IV. If I ever learn how, this'll be the first mod I'll release.

 

u can learn if u practice everyday and are willing to read a lot about errors u will run into... gtaiv taught me how to program, before gtaiv i didnt even know what c# was

 

this was a website i referred to a lot when i was new... www.dotnetperls.com they explain stuff so noobs can understand

 

start by trying to make your own trainer... simple functions that trigger by keypress is a good way to get familiar with gta native functions and the scripthookdotnet native function wrappers

 

 

That's awesome, that you you've learn C# by modding GTA I find it amazing. I am from a programming background (C#, JAVA, PHP and some others), I couldn't really see a good programmer emerging from modding GTA, but I guess I was wrong.

 

 

Good work!

  • Like 1
Link to comment
Share on other sites

LordOfTheBongs

well i went from gta scripting to scripting app ideas in windows forms and that introduced me to a lot more concepts, i hang out in programming IRCs a lot too, thanks pedro2555 ;)

Link to comment
Share on other sites

well i went from gta scripting to scripting app ideas in windows forms and that introduced me to a lot more concepts, i hang out in programming IRCs a lot too, thanks pedro2555 ;)

 

Ah, I see! You made the right move, you tried to understand the language rather than trying to make mods only. When you know the language it's a piece of cake (sometimes a very hard one, but oh well).

 

I hope some of my projects actually helped you in the learning process.

  • Like 1
Link to comment
Share on other sites

Haha, i am 15 years old now, and i am learning C# on by making very simple mods in GTA. Of course, i am a noob, and i wont learn writing great mods soon. But everybody has to start somewhere

  • Like 1
Link to comment
Share on other sites

Haha, i am 15 years old now, and i am learning C# on by making very simple mods in GTA. Of course, i am a noob, and i wont learn writing great mods soon. But everybody has to start somewhere

 

You're a very young man, it's good to start learning so soon. Just don't fall on the mistake of 'wanting to make mods', learn the language and you will be able to.

Link to comment
Share on other sites

Yeah, I am following some courses on youtube in C#. But i cant find a good tutorial on native functions..

Link to comment
Share on other sites

LordOfTheBongs

Native functions u just need to know the return type and the correct parameters to use. Also if the native requires a pointer then u just need to know how to create a pointer object for the correct type using GTA.Native.Pointer

Link to comment
Share on other sites

Owh, that sounds easy hahaha, but most of the time i dont kbow what return typr or parameters i have to use..

Link to comment
Share on other sites

Owh, that sounds easy hahaha, but most of the time i dont kbow what return typr or parameters i have to use..

 

Refer to this page: http://www.gtamodding.com/index.php?title=List_of_native_functions

 

I try to keep everything updated as soon as I find something new but still there are things already known which are missing there, nevertheless it is a great source.

Edited by pedro2555
Link to comment
Share on other sites

oke, thanks! I have a little question (i hope it is little). When u have to go somewhere, a yellow round field is in the world (that yellow thing where u have to go in missions). How do i spawn that on vector 3 location?

Link to comment
Share on other sites

LordOfTheBongs

u can make a new instance of a Checkpoint object from the scripthookdotnet and then set it's visibility to true

 

example...

using GTA;using System.Drawing;...Checkpoint cp = new Checkpoint(Game.LocalPlayer.Character.Position.ToGround(), Color.Yellow, 3f);cp.Visible = true;
Edited by LordOfTheBongs
Link to comment
Share on other sites

LordOfTheBongs

@Wiebrendh

 

btw i already made a detailed post in another one of your threads on how to figure out how to use a native without reversing yourself... ill post here again since it adds a little to what pedro2555 said... u should read it this time ;)

 

http://gtaforums.com/topic/696375-get-time-and-date/?p=1065057023

Edited by LordOfTheBongs
Link to comment
Share on other sites

LordOfTheBongs

I used that site, and post thread of u, but i could not find it :(

yeah some natives u might not find... u can see if it is on the google code page for the ScriptingDirty.h and at least see how many parameters. Sometimes it is easy to guess what u need. Most natives the order of the parameters is always the same pattern... example, if a native does something with a ped the first parameter will most likely be the ped, if it needs a vector3 value then u know that is 3 parameters and would usually come after the vehicle or object or whatever... u just use clues from what u know from practicing

Edited by LordOfTheBongs
Link to comment
Share on other sites

  • 2 weeks later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • 1 User Currently Viewing
    0 members, 0 Anonymous, 1 Guest

×
×
  • Create New...

Important Information

By using GTAForums.com, you agree to our Terms of Use and Privacy Policy.