bull.04 Posted October 20, 2010 Share Posted October 20, 2010 What is the name of the particle where you shoot someone in the head and the blood squirts out? I tried using the "blood_heli" one but it was way too large and lagged my game. I just want the one with the little fountain of blood. Does someone know the name of this particle? Link to comment https://gtaforums.com/topic/461398-blood-particle-name/ Share on other sites More sharing options...
jtr007 Posted October 20, 2010 Share Posted October 20, 2010 Good post, i would like to know too Link to comment https://gtaforums.com/topic/461398-blood-particle-name/#findComment-1060169108 Share on other sites More sharing options...
TheSiggi Posted October 20, 2010 Share Posted October 20, 2010 Acording to tecra700ct there are effects inside efects,fxp which can only be accessed by hardcoded games functions and not by anything related to the script engine. A plugin might work though cheers Link to comment https://gtaforums.com/topic/461398-blood-particle-name/#findComment-1060169166 Share on other sites More sharing options...
yair1221 Posted October 20, 2010 Share Posted October 20, 2010 i know an bloody explosion: "blood_heli" *from the sanny builder help Link to comment https://gtaforums.com/topic/461398-blood-particle-name/#findComment-1060169287 Share on other sites More sharing options...
Silent Posted October 20, 2010 Share Posted October 20, 2010 (edited) I tried using the "blood_heli" i know an bloody explosion:"blood_heli" yair receives 'The smartest user' GTAF award, congratulations. You want to be too clever, man Again I have a suggestion: How about making sweaters instead of scripting? Edited October 20, 2010 by SilentPL Link to comment https://gtaforums.com/topic/461398-blood-particle-name/#findComment-1060169299 Share on other sites More sharing options...
jtr007 Posted October 20, 2010 Share Posted October 20, 2010 i wish GTAF had a like button for it's comments, cause i'd silents comment right now! What do you mean a plugin siggi? Link to comment https://gtaforums.com/topic/461398-blood-particle-name/#findComment-1060169316 Share on other sites More sharing options...
yair1221 Posted October 20, 2010 Share Posted October 20, 2010 lol i didnt read the initial post i was just trying to help, shut up and YOU go and make sweaters...its 40 degrees out here Link to comment https://gtaforums.com/topic/461398-blood-particle-name/#findComment-1060169330 Share on other sites More sharing options...
Deji Posted October 20, 2010 Share Posted October 20, 2010 I don't know whether to laugh or cry... 04C4: store_coords_to 1@ 2@ 3@ from_actor $PLAYER_ACTOR with_offset 0.5 0.2 0.409B8: create_blood_gush_at 1@ 2@ 3@ with_offset 1.0 -1.0 1.0 density 20 on_actor $PLAYER_ACTOR 2 words... opcode search. Link to comment https://gtaforums.com/topic/461398-blood-particle-name/#findComment-1060169388 Share on other sites More sharing options...
TheSiggi Posted October 20, 2010 Share Posted October 20, 2010 w...wait! Are we talking abiut the bloody fountain which appears by any headshot or what : Link to comment https://gtaforums.com/topic/461398-blood-particle-name/#findComment-1060169459 Share on other sites More sharing options...
Deji Posted October 20, 2010 Share Posted October 20, 2010 Well, there be only one known way to go about that: 0321: AS_actor 0@ die_headshotted Maybe you could create an invisible, collisionless actor where the other actor is and use that opcode. Although, looping the last opcode I posted over and over, placing the blood at the top of his head (going upwards) would produce a similar effect... Gruesome.. What do you want this for, anyway? Link to comment https://gtaforums.com/topic/461398-blood-particle-name/#findComment-1060169513 Share on other sites More sharing options...
bull.04 Posted October 21, 2010 Author Share Posted October 21, 2010 Thanks, Deji. It works now. For anyone who wants the spray to appear at the head, just use these coords: 04C4: store_coords_to 11@ 12@ 13@ from_Actor $PLAYER_ACTOR with_offset 0.0 0.0 0.67009B8: create_blood_gush_at 11@ 12@ 13@ with_offset 0.0 0.0 0.0 density 20 on_actor $PLAYER_ACTOR One question, how do you rotate the blood spray? Because it is spraying downwards and looks odd, so I figured there is a way to rotate it correct? Link to comment https://gtaforums.com/topic/461398-blood-particle-name/#findComment-1060170066 Share on other sites More sharing options...
Deji Posted October 21, 2010 Share Posted October 21, 2010 The with_offset changes the offset which the blood aims towards. 04C4: store_coords_to 11@ 12@ 13@ from_Actor $PLAYER_ACTOR with_offset 0.0 0.0 0.67009B8: create_blood_gush_at 11@ 12@ 13@ with_offset 0.0 0.0 2.0 density 20 on_actor $PLAYER_ACTOR You could randomize the other two floats to get it to go in all sorts of directions and distances, or just leave as 0 to have it going straight up. Link to comment https://gtaforums.com/topic/461398-blood-particle-name/#findComment-1060170099 Share on other sites More sharing options...
jtr007 Posted October 21, 2010 Share Posted October 21, 2010 but where abouts we put this code? Link to comment https://gtaforums.com/topic/461398-blood-particle-name/#findComment-1060170144 Share on other sites More sharing options...
coin-god Posted October 21, 2010 Share Posted October 21, 2010 but where abouts we put this code? Depends of what you want to do man. Link to comment https://gtaforums.com/topic/461398-blood-particle-name/#findComment-1060171129 Share on other sites More sharing options...
bull.04 Posted October 21, 2010 Author Share Posted October 21, 2010 Huge image ahead! Completes my headless CJ mod! Thanks Deji, you do wonders. Also, here is the cleo if anyone wants it. Just press Numpad 5 to activate and Numpad 6 to deactivate. {$CLEO .cs}thread 'BLOOD':BLOOD_1wait 0if andPlayer.Defined($PLAYER_CHAR)0AB0: key_pressed 101jf @BLOOD_1jump @BLOOD_2:BLOOD_2wait 004C4: store_coords_to 11@ 12@ 13@ from_Actor $PLAYER_ACTOR with_offset 0.0 0.0 0.67009B8: create_blood_gush_at 11@ 12@ 13@ with_offset 0.0 0.0 2.0 density 20 on_actor $PLAYER_ACTORjump @BLOOD_3:BLOOD_3wait 0if0AB0: key_pressed 102jf @BLOOD_2jump @BLOOD_1 Link to comment https://gtaforums.com/topic/461398-blood-particle-name/#findComment-1060171416 Share on other sites More sharing options...
TheSiggi Posted October 21, 2010 Share Posted October 21, 2010 what a bullsh*t! resize that image man! Link to comment https://gtaforums.com/topic/461398-blood-particle-name/#findComment-1060171421 Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now