Everything posted by jitsuin666
-
Need some basic coding help using RagePluginHook
two angels now! xoxoxo im sorry im a pathetic lazy bastard but i have no more patience, i was searching, even i tried a million ways to attach ptfx, even copying the logic from game scripts and it would not work!! gta iv seemed more cooperative 😞
-
Need some basic coding help using RagePluginHook
you see those are exactly what i want to use, thank you kind sir... now about that police hat and glasses... is that like advanced hook stuff... lspdfr use only xD someone? help me i cant patrol streets without hat and glasses 😞 oh and thank you for the ptfx code, going to be testing that very soon 😉 you are an angel sent from heaven 😘 i dont have much to offer you but i do know how to summon the jew fairy do you see how sad my police woman looks with no hat 😞
-
Spawn Police Hat And Glasses
How, put code here? i give you sukky sukky if you tell me
-
Need some basic coding help using RagePluginHook
i just wanted to do it the safes way possible, im not sure if i can give a weapon when i already have one and it just screws with gta's memory... just trying to play it safe and point at the weapon itself that already exists and set the ammo on it...it would be nice if we had something like ped.Inventory.GetWeapon(weaponHash).Ammo 😉 rph is calling the game natives and maybe the game natives are supposed to be used a certain way, unless you know for a fact otherwise... i use to code for iv with scripthook.net and you could mess up gta if you werent using natives right and get access violations left and right... rockstar doesnt program their native functions to check to make sure dev is using at correct time, they know how to use them, i dont, we all guess and look to decompiled scripts for example
-
Need some basic coding help using RagePluginHook
oh im on the discord channel right now, they all are yelling at me right now and harassing me and bla bla bla... yeah but thank you for your response kind sir... i wasnt waiting just an hour but days and yes coders on here constantly, no one cares unless they need something what is eup menu? im just making my own mod i dont plan to use anyone else's stuff... i prefer to make my own mods, the only mod i have downloaded is lspdfr
-
Need some basic coding help using RagePluginHook
well i try to help people but i notice nobody helps me, this isnt my first thread asking how to spawn a police hat. The other day I showed someone how to make a menu, i wasted like 10-15 minutes explaining and even made example code for them and not even a thanks. Do you know how to spawn the pllice hat and glasses... i think they look so very very cool and geee wouldnt it be nice if i can spawn them too 😄 but nah nobody cares about me, no one wants to help me, why do you care if i curse... let me curse at the clouds if it makes me feel better, nobody was ever going to come here and read it, nobody cares, it made me feel better typing it 😛 you see my avatar... that's an actual photo of me
-
LSPDFR Feels Like A Demo WIth No Purpose
ugh im too lazy, the modders need to do that stuff... like if my mod is listed on essential mods i will make sure it works 😉
-
Need some basic coding help using RagePluginHook
ah yes ignored like always, nobody ever answers my coding questions haha why do i bother, i have helped people so much over the years showing them how to do fucking everything, make menus you name it... you all act like gta is some top secret shit and sharing information might mean another modder makes something better i dont know, is it a competitive thing... im just making a personal mod that i will not upload... just want to know some simple answers and you fuckers been coding gta for past 10 years and act like little snob fucks, guess what i knw what it takes to code, i know you are just a monkey that can make some garbage code, i know you fool all the little fucking kooks that think you are a hacker or someshit but i know you are an idiot, i know any monkey can learn... im too fucking lazy to go through lists of natives that all you lazy fucks havent organized into a library properly... if you made a proper sdk i wouldnt have to ask these questions... I guess you are trash oh well... i spit on you and your code patooie! LOL (and here come the responses to my thread toi simply talk shit... but when i was talking coding nobody would reply lol) go ahead come talk shit to me i welcome it, i know this post is going to rub sand in all your vaginas. Well I say good, fuck you! i want a lspdfr dev to get in this fucking thread and tell me how to spawn the god damn police hat and glasses and i want to know NOW!!!!
-
Need some basic coding help using RagePluginHook
I have the weapon hash and want to add ammo to the weapon, i made this code but seems like a lot of extra work to do something so simple weapon is a WeaponHash and pi is Game.LocalPlayer.Character.Inventory
-
Need some basic coding help using RagePluginHook
Hello fellow officers... i need some help if anyone has a moment, i am not new to coding gta so if you want to explain quickly, that is fine... 1. how do you attach ptfx smoke to an object? 2. how do you add ammo to a weapon in the ped inventory? 3. How do you spawn a police hat and sunglasses like they do in lspdfr?? (it is not a character variation I guess) I am using the RagePluginHook but all I need to know is which native functions can do this or someone can give an example of the code? thanks
-
LSPDFR Feels Like A Demo WIth No Purpose
i meant relatively bug free 🙂 thanks for the reply, i will look at those so all those mods on that page could be installed? will there be any conflict?
-
LSPDFR Feels Like A Demo WIth No Purpose
any mods you can recommend? preferably bug free ones lol
-
Taking requests for textures!
anything for military preferably replacing gang models since the game is designed to make those guys fight and would be perfect for military textured peds
-
Code For Police Hat And Sunglasses?
Hello, long time modder, so you can talk to me with that in mind... not asking to be spoon fed but can someone spoon feed me some code to spawn the hat and sunglasses... i already know about setting character variations but that does not appear to set those removeable items... can anyone share the native function i need to use... I figured I asked instead of testing stuff for hours to find it... thank you! Im sure someone here knows how to do it. I am Using RagePluginHook if that has code to do it but if you know the native, that works... thank you!
-
LSPDFR Feels Like A Demo WIth No Purpose
in case you guys want code to help controller people... i made these classes to detect double taps and long presses of buttons... i think in your mod for any key there should also be a contoller button check and many functions can be implemented by double tapping A button or D pad down or by doing long presses of those buttons... please take this code if you want to implement controller functionality for loser controller people like me :3 implemented... declare in class private LongPress lp = new LongPress(ControllerButtons.A); Tick if (Game.IsKeyPressed(Keys.E) || lp.Check()) { ArrestSuspect(); } Spoiler class LongPress { private const uint LONG_PRESS_TIME = 1000u; private bool startedPress; private uint pressTime; private ControllerButtons button; internal LongPress(ControllerButtons b) { button = b; } internal bool Check() { bool yep = Game.IsControllerButtonDownRightNow(button); if (!yep) { startedPress = false; return false; } uint gt = Game.GameTime; if (startedPress) { if (gt - pressTime > LONG_PRESS_TIME) { startedPress = false; return true; } } else { startedPress = true; pressTime = gt; } return false; } } class DoublePress { private const uint DOUBLE_PRESS_TIME = 500u; private uint pressTime; private int pressCount; private ControllerButtons button; internal DoublePress(ControllerButtons b) { button = b; } internal bool Check() { bool yep = Game.IsControllerButtonDown(button); if (yep) { uint gt = Game.GameTime; pressCount++; if (pressCount == 1) { pressTime = gt; return false; } else if (gt - pressTime < DOUBLE_PRESS_TIME) { pressCount = 0; return true; } else { pressTime = gt; pressCount = 1; return false; } } else { pressCount = 0; return false; } } } Also that is great you guys are already way ahead of me thinking about replayability 😉 i will check out that article, looks promising... i have been out the loop of gta 5 for a couple years (or more) THERE IS A BUG IN THIS CODE BUT IF YOU WANT TO USE YOU CAN FIGURE IT OUT xD
-
LSPDFR Feels Like A Demo WIth No Purpose
I think LSPDFR is obviously the best mod on GTA V but it lacks purpose. I just started playing GTA 5 again and tried it out for the first time and am very impressed with the whole police station and even the way the camera pans to the outside of the police station when you enter the station to go on duty. Right now though the mod lacks any kind of real purpose other than it being a demo to showcase all the cool stuff you guys made. It does not offer much replayability. A mod like this of course if it had a full blown campaign with voice acting would be amazing but it needs purpose to get people addicted. I actually made a mod for myself to track my kills from when i load my game until i die. I give myself 50 points for kills and 100 points for headshot kills and keep track of headshots and kill count. Then I save my high score and it make it so when i am bored and just causing chaos it actually keeps my score and when i die i can try to beat my score. It makes causing chaos have puprose and more fun if you are trying to beat a friend's score. LSPDFR has it's own website and could store users score and even show the high scores in game when you die. You know give points for killing suspects and more points for arresting them. Track the scores each death of the player angainst the callout suspects. Or if not that anything you could think of to give the player something to achieve. It is essentially a demo of what you guys scripted and fun to mess around with but not for long. Thanks. Also I play with a controller and oncfigurable controller buttons would be nice but i can use steam to edit controller settings to whatever but it would be easier if you guys programmed in double tap presses for buttons or something. The controller might be limited but if you are creative you can get a lot of functions on them. I can play arma with a controller no problem and i have tons of stuff binded to my pad so it can be done 😉
-
Spotlight & Flashlight
sorry for the shitty keys and this is old but you can edit the cs file and make the keys whatever you want
- 74 comments
- 13 reviews
- Sp4s12sNewCallouts
-
Game Scripts Loader
This mod is for loading or stopping the game's scripts. This is not for loading scripts used with the scripthook.
- 4 comments
- 1 review
- Realistic Cop Script
- Spotlight & Flashlight
- Game Scripts Loader
- Dual Siren (Update)
-
Game Scripts Loader
- 1,167 downloads
- Version Feb 4
This script basically allows you to load and kill scripts the game uses. It also tells you what scripts are loaded by the game. If you see **LOADED** next to the name of the script, it means the game has loaded this script and it is being used by the game. So these are the scripts written by rockstar that all of you know and love. Now you control which ones can run and which ones u can disable. Enabling some does nothing others you might see something I don't know. Example, if you want to disable the cellphone friends stop calling... then open the menu and cycle to the script "spcellphone" and kill the script. Now your up arrow is free and no more annoying phone calls. And if you need your phone just restart the script :) Some scripts may have surprising results so if you find something cool, please share in comments. WARNING: THIS IS AN EXPERIMENTAL SCRIPT. IT MOST LIKELY WILL CRASH YOUR GAME OR CAUSE IT TO BECOME UNSTABLE SO ENJOY SEEING WHAT THEY DO BUT IN NO WAY IS THIS SCRIPT MEANT TO KEEP YOUR GAME STABLE. I AM JUST PROVIDING EXTRA FUNCTIONALITY FOR YOU TO MESS AROUND WITH ;D Console Commands: "start" scriptName (you can start multiple scripts by putting a space between script names) "kill" scriptName (Kill multiple by putting space in between keys: F12: Open Close Script Menu PageUp/Down: Cycles menu (You can hold key down) Enter: Loads Script Delete: Kills Script Right: Favorite script Left: Unfavorite script Keys can be edited and the menu cycle speed can be increased or decreased (ini file) You have ability to save your favorite scripts so you can jump right to them (Shift+CycleUpMenu/CycleDownMenu... see ini) in the menu. Also added so you can press Shift+Any Letter to jump to the first script beginning with that letter. So there are a total of 366 scripts I added that u can load. I have no idea what they do so if u load one and nothing happens then your guess is as good as mine... ;D Enjoy searching through em and if you find cool ones please let us know in comments.- 4 comments
- 1 review
-
Spotlight & Flashlight
finally back to coding gta again, will upload the updated script with spotlight for police vehicles, right now i only setup for one police vehicle model
- 74 comments
- 13 reviews