Drones Hunt You Down at 5 Stars 2.3
3.575
95
3.575
95
YOU MAY NOT REDISTRIBUTE THIS MOD ANYWHERE WITHOUT CRAZYMAISY3'S WRITTEN PERMISSION!
INSTEAD OF REDISTRIBUTING, LINK THE DOWNLOAD!
This mod makes drones hunt you down at 5 stars.
YOU NEED TO INSTALL SkylineGTRFreak's "MQ-9 Reaper UAV" FOUND HERE FOR THIS TO WORK
Put drone.asi and drone.ini in X:\Grand Theft Auto V\
For the vehicle weapons, the model names can be found here
The sourcecode is in drone.cpp
YOU MAY NOT DISTRIBUTE ANYTHING HERE. IF YOU MODIFY THE SOURCE OR MAKE A VIDEO, CREDIT ME, CrazyMaisy3
Changelog
2.3
-Added another ini option
-Removed Easter Egg
-FIXED THE GODDAMNED SOURCE
2.2
-Added more ini options
-Added Easter Egg(0, 1, 4, and 7)
2.1
-Added a vehicle weapon option in the ini
-Fixed the sourcecode so the .ini is actually read
-Fixed spelling errors(lol)
2.0:
-Added ini file
1.0:
Initial release
Credits:
CrazyMaisy3(me): Main programming and idea
PlasticTangerene: Source to base off of
SkylineGTRFreak: The drone vehicle
INSTEAD OF REDISTRIBUTING, LINK THE DOWNLOAD!
This mod makes drones hunt you down at 5 stars.
YOU NEED TO INSTALL SkylineGTRFreak's "MQ-9 Reaper UAV" FOUND HERE FOR THIS TO WORK
Put drone.asi and drone.ini in X:\Grand Theft Auto V\
For the vehicle weapons, the model names can be found here
The sourcecode is in drone.cpp
YOU MAY NOT DISTRIBUTE ANYTHING HERE. IF YOU MODIFY THE SOURCE OR MAKE A VIDEO, CREDIT ME, CrazyMaisy3
Changelog
2.3
-Added another ini option
-Removed Easter Egg
-FIXED THE GODDAMNED SOURCE
2.2
-Added more ini options
-Added Easter Egg(0, 1, 4, and 7)
2.1
-Added a vehicle weapon option in the ini
-Fixed the sourcecode so the .ini is actually read
-Fixed spelling errors(lol)
2.0:
-Added ini file
1.0:
Initial release
Credits:
CrazyMaisy3(me): Main programming and idea
PlasticTangerene: Source to base off of
SkylineGTRFreak: The drone vehicle
Zuerst hochgeladen: 22. Januar 2017
Letztes Update: 30. Januar 2017
Last Downloaded: 22 hours ago
108 Kommentare
More mods by CrazyMaisy3:
- Config
2.25
932
9
0.1 [ALPHA]
By CrazyMaisy3
YOU MAY NOT REDISTRIBUTE THIS MOD ANYWHERE WITHOUT CRAZYMAISY3'S WRITTEN PERMISSION!
INSTEAD OF REDISTRIBUTING, LINK THE DOWNLOAD!
This mod makes drones hunt you down at 5 stars.
YOU NEED TO INSTALL SkylineGTRFreak's "MQ-9 Reaper UAV" FOUND HERE FOR THIS TO WORK
Put drone.asi and drone.ini in X:\Grand Theft Auto V\
For the vehicle weapons, the model names can be found here
The sourcecode is in drone.cpp
YOU MAY NOT DISTRIBUTE ANYTHING HERE. IF YOU MODIFY THE SOURCE OR MAKE A VIDEO, CREDIT ME, CrazyMaisy3
Changelog
2.3
-Added another ini option
-Removed Easter Egg
-FIXED THE GODDAMNED SOURCE
2.2
-Added more ini options
-Added Easter Egg(0, 1, 4, and 7)
2.1
-Added a vehicle weapon option in the ini
-Fixed the sourcecode so the .ini is actually read
-Fixed spelling errors(lol)
2.0:
-Added ini file
1.0:
Initial release
Credits:
CrazyMaisy3(me): Main programming and idea
PlasticTangerene: Source to base off of
SkylineGTRFreak: The drone vehicle
INSTEAD OF REDISTRIBUTING, LINK THE DOWNLOAD!
This mod makes drones hunt you down at 5 stars.
YOU NEED TO INSTALL SkylineGTRFreak's "MQ-9 Reaper UAV" FOUND HERE FOR THIS TO WORK
Put drone.asi and drone.ini in X:\Grand Theft Auto V\
For the vehicle weapons, the model names can be found here
The sourcecode is in drone.cpp
YOU MAY NOT DISTRIBUTE ANYTHING HERE. IF YOU MODIFY THE SOURCE OR MAKE A VIDEO, CREDIT ME, CrazyMaisy3
Changelog
2.3
-Added another ini option
-Removed Easter Egg
-FIXED THE GODDAMNED SOURCE
2.2
-Added more ini options
-Added Easter Egg(0, 1, 4, and 7)
2.1
-Added a vehicle weapon option in the ini
-Fixed the sourcecode so the .ini is actually read
-Fixed spelling errors(lol)
2.0:
-Added ini file
1.0:
Initial release
Credits:
CrazyMaisy3(me): Main programming and idea
PlasticTangerene: Source to base off of
SkylineGTRFreak: The drone vehicle
Zuerst hochgeladen: 22. Januar 2017
Letztes Update: 30. Januar 2017
Last Downloaded: 22 hours ago
@CrazyMaisy3 you gotta teach me how to write scripts haha xD I took your cpp file and did this:
I'm sure its jacked up haha but I try. doesnt even make sense lol
using GTA;
using System;
using System.Windows.Forms;
public class Neger : Script
{
private object driverModelName;
private object Polmav;
private int waitTime;
private readonly object wantedLevel;
public Neger()
{
Tick += OnTick;
KeyDown += OnKeyDown;
KeyUp += OnKeyUp;
Interval = 60;
}
void OnTick(Object Sender, EventArgs e)
{
Player player = PLAYER::PLAYER_ID();
Ped playerPed = PLAYER::PLAYER_PED_ID();
Vehicle veh = PED::GET_VEHICLE_PED_IS_USING(playerPed);
Ped driverModel = GAMEPLAY::GET_HASH_KEY(driverModelName);
if (PLAYER::GET_PLAYER_WANTED_LEVEL(player) == wantedLevel)
Wait(waitTime * 1000);
int VehicleVehSpawned = 0;
if (VehicleVehSpawned == 0)
{
STREAMING::REQUEST_MODEL(Polmav);
while (!STREAMING::HAS_MODEL_LOADED(Polmav))
Wait(0);
Vector3 position = ENTITY::GET_ENTITY_COORDS(playerPed, 1);
Vehicle veh = VEHICLE::CREATE_VEHICLE(Polmav, position.x, position.y, position.z + 400.0f, ENTITY::GET_ENTITY_HEADING(playerPed), 0, 0);
STREAMING::REQUEST_MODEL(driverModel);
while (!STREAMING::HAS_MODEL_LOADED(driverModel))
Wait(0);
driver = PED::CREATE_PED_INSIDE_VEHICLE(jetVeh, 26, driverModel, -1, false, false);
Vehicle::SET_VEHICLE_FORWARD_SPEED(veh, 50.0f);
object driver = null;
PED::SET_PED_RELATIONSHIP_GROUP_HASH(driver, GAMEPLAY::GET_HASH_KEY("cop"));
WEAPON::SET_CURRENT_PED_VEHICLE_WEAPON(driver, GAMEPLAY::GET_HASH_KEY(weaponName));
AI::TASK_VEHICLE_CHASE(driver, playerPed);
Vehicle veh Spawned += 1;
GTA.Native.Function.Call(GTA.Native.Hash.TASK_COMBAT_HATED_TARGETS_AROUND_PED, Ped playerPed, 150000);
}
}
void OnKeyDown(Object Sender, KeyEventArgs e)
{
}
void OnKeyUp(Object Sender, KeyEventArgs e)
{
}
}
@Saberninja710 ayyy lmao ur copying my c++ code into a c# template. No go. Download visual studio and download the scripthookv SDK. Message me on the forums please
@CrazyMaisy3 oh haha. I would message you on forums, but for some reason it won't let me register or log in on the forums. no worries man, I'll figure it out someday xD
can you make a mod whee it quick saves everytime after I die? about 5 seconds after I spawn back into the world
@Saberninja710 sure
@CrazyMaisy3 that would be cool xD
@CrazyMaisy3 check out my video lol
https://www.youtube.com/watch?v=rygUXwUbaj0
@Saberninja710 Hey, that's pretty good
@CrazyMaisy3 haha ty xD
@CrazyMaisy3 I'm trying to make police AI in annihilator helicopters shoot at me with the copter machine gun, whether I'm on foot or in a vehicle. can't find the info in Vehicles.meta or Handling.meta
@Saberninja710 add my skype: Shymon2Linux I can talk from sat. until next sat bc I have winter break :P
@CrazyMaisy3 ok. hey where do you learn how to script???
@Saberninja710 School lmao
The drones arent spawning, any help?
@CrazyMaisy3 hey dude. I want to make a mod where the drone from oblivion spawns if I am wanted, and chases me down. and shoots at me till no wanted, or dead. And looks for me when out of sight. Forums wont work for me for some reason, can you help me make a script like this>?
@Saberninja710 When school gets out I will. Sorry for the extremely late reply.
@CrazyMaisy3 for sure no problem man xD
hello will this work w ENT Mod menu? & can they be shot down right? if i use homing launcher or jet or missile launcher
@CrazyMaisy3 Hey u got steam? Add me and let's make a mod together or something lol
does this work with the army spawns at five stars