Post: GTA IV: Unlimited Dead Eye MOD by JDMAlex
01-14-2013, 04:46 PM #1
(adsbygoogle = window.adsbygoogle || []).push({}); Our official GTA modding team here @ PSX-Scene is working hard on some amazing mods. Following the recently released Superman mod by EvilB comes a new mod that is so nice you would think RockStar themselves made it according to our resident modder nativesith, who has announced the release of a new GTA IV mod for PS3/Xbox360 by JDMAlex called "Unlimted Dead-Eye" a Red Dead Redemption like script bringing Bullet-time (Slow-Down) to GTA IV and EFLC. Below is the unveiling of this mod by nativesith.


[ATTACH=CONFIG]21586[/ATTACH]


Like dis one it feel soo professional like it was made by RS (it was actually).
Ladies(any ladies?) and gentlemen I am once again honored to show off this script.
A Red Dead Redmption like script bring Bulltetime(Slow down time) to IV and EFLC.



As said by I master JDMAlex!
Any RDR fans? , here is a script for Unlimited Dead Eye in gta .. I was going to release it in my mini game but due to the flu and a bunch of other things Ill at least give this up.
I havent had much time to play with it but when I do ill make it better.

Instructions:
Same as the game , Hold L2 to aim and Press (just once) R3 (not sure what that translates into for xbox sorry) then hold Aim and shoot.

Download SCO:
You must login or register to view this content.
SRC:
Code:
/**
Dead Eye Mod by:JDMAlex RC 1
directions HOLD AIM (L2) and Hit (r3) Like r2r
for use with mod manager in all ver of GTA
**/

#include <natives.h>
#include <common.h>
#include <strings.h>
#include <types.h>
#include <consts.h>
#define L2 0x5
#define R3 0x13 // R3

bool deadEye = false,
set = true;

// checks if ped is aiming
bool is_char_aiming(Ped aimer){
if(DOES_CHAR_EXIST(aimer)){
if(IS_BUTTON_PRESSED(0, L2)){ //l2
if(!IS_CHAR_ARMED(aimer, WEAPON_SLOT_UNARMED)){
return true;
}
}
}
}

void deadEyefunction(void){
if(is_char_aiming(GetPlayerPed())){
if(IS_BUTTON_JUST_PRESSED(0, R3)) {
deadEye = true;
set = false;
}
if(deadEye){
float x,y,z;
SET_TIME_SCALE(0.1);
DRAW_RECT(0.0f, 0.0f, 2.0f, 2.0f, 255, 128, 0, 50); // orange tint
GET_CHAR_COORDINATES(GetPlayerPed(), &x, &y, &z);
PLAY_SOUND_FROM_POSITION(GET_SOUND_ID(),"FM6_UNDERTAKER_BELLS",x,y,z );
}
else set = false;
}
else{
deadEye = false;
}
if(!deadEye && !set){
SET_TIME_SCALE(1.0);
//STOP_SOUND(GET_SOUND_ID());
deadEye = false;
set = true;
}
}



//Shortcut/Helper
void Print(char *string){
PRINT_STRING_WITH_LITERAL_STRING_NOW("STRING", string, 1000, 1);
}
//Main
void main(void){
THIS_SCRIPT_IS_SAFE_FOR_NETWORK_GAME();
while(1){
WAIT(0);
if(!IS_CHAR_IN_ANY_CAR(GetPlayerPed())){
deadEyefunction();
}
}
}


download:
You must login or register to view this content.
(adsbygoogle = window.adsbygoogle || []).push({});
01-15-2013, 02:46 PM #2
tony.b.stard
Bounty hunter
Originally posted by justknight1 View Post
im going to try this


let us know what its like please.

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo