News: Welcome back to Bullworth! If you haven't already, you will need to reset your password..


Show Posts

Messages | * Topics | Attachments

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Topics - GreenOmnitrix

Pages: 1 2 [3] 4 5 ... 7
31
Mod Showroom / GTA V Families Gang Member
« on: February 24, 2015, 05:08:40 PM »



32
Mod Releases / Grove Street Skin Mod
« on: February 24, 2015, 11:41:57 AM »


Bully SE: Grove Street Skin Mod w/ Download Link

Download

Installation:
Replace GN_Bully04.nif and GN_Bully04.nft in World.img.

(Optional) Replace STimeCycle.lur to play as the Grove Street Gangster, press the down arrow in-game to switch to his model.

33
Mod Showroom / Grove Street Gangster Ped
« on: February 23, 2015, 11:47:11 PM »
Bully SE: Grove Street Ped

I managed to figure out how to rig pedestrians to Bully after a month or two. This is one of the many peds I will rig to Bully. I'm not sure if you guys wanted this so I didn't put a download link, just tell so if you do.

34
Mod Releases / Super Thad Bodyguard
« on: February 23, 2015, 07:10:01 PM »
Bully SE: Super Thad Bodyguard w/ Download Link

This is no ordinary bodyguard...it's SUPER Thad!

Thad with a cool costume and upgraded stats and more commands! He also does this cool Nerd evade when a prefect busts him.

I've also included a beta of my "Advanced Bodyguards Mod" script in the mod so you can try it. You can make Thad attack a targeted ped, wait/follow, and spawn/despawn him as you please.

Controls:
Down Arrow = Spawn/Despawn Super Thad.
Lock On + Right Arrow = Make Super Thad attack the ped.
Left Arrow = Wait/Follow.

Catch the Download Link!

35
Mod Releases / Tattle Mod
« on: February 22, 2015, 06:30:56 PM »
Bully SE: Tattle Mod w/ Download Link

Play as Sheldon and become a snitch! Lock on to any ped and press the down arrow key to tattle tale on them for whatever reason.

Catch the Download Link!

36
Mod Releases / Force Push Mod
« on: February 20, 2015, 09:29:29 PM »
Bully SE: Force Push Mod w/ Download Link

Download Link:
http://www.mediafire.com/download/t6eulkd9brkbx7l/Force+Push.zip

I will release a force mod overhaul later on, including: Force Grip, Force Smash, Force Rage, etc.

37
This tutorial will teach you how to make a locked on pedestrian do your desired action node.

First of all you will need to make a function, for this tutorial I will use:

Code: [Select]
F_PedNode = function()
Then you need to make a local and make it call PedGetTargetPed(gPlayer) so you won't have to type it always.

Code: [Select]
local Ped = PedGetTargetPed(gPlayer)
After that, you need to make an if/then statement using your desired buttons and add a PedIsValid(Ped) to make sure that the action node only activates if they are is a valid ped targeted. I made mine press the down arrow key.

Code: [Select]
if IsButtonPressed(3,0) and PedIsValid(Ped) then
Now, all you need to do is add your desired action node, I will make the ped I target use a running attack, just for fun.

Code: [Select]
ExecuteActionNode(Ped, "/Global/Actions/Offense/RunningAttacks/RunningAttacksDirect", "Act/Globals/GlobalActions.act")
Finally, you are done! The desired ped that you target will do the action node you provide. Here is the finished function that you can use and edit in your mods. Thanks for reading this tutorial!
Code: [Select]
F_PedNode = function()
local Ped = PedGetTargetPed(gPlayer)

if IsButtonPressed(3,0) and PedIsValid(Ped) then
ExecuteActionNode(Ped, "/Global/Actions/Offense/RunningAttacks/RunningAttacksDirect", "Act/Globals/GlobalActions.act")
end
end



38
Mod Showroom / Sp00ky
« on: February 20, 2015, 02:21:08 AM »

39
Mod Showroom / Tattle Mod
« on: February 19, 2015, 10:02:20 PM »
Bully SE: Tattle

Sheldon <3

40
Mod Showroom / Ray and Constantinos Conversation Test
« on: February 17, 2015, 08:28:50 PM »
Bully SE: Ray and Constantinos Conversation Test

Little test on what mod I'm working on that will be released soon.

41
Mod Showroom / Boxing Player Full Style
« on: February 15, 2015, 09:07:15 PM »
BoxingPlayer fighting style with it's native strafe, manual block, and knockout recovery from the mini-game. I finally figured out how to set PedSetFightingSystem and PedSetAlwaysStrafe to accomplish this.

Bully SE: Boxing Player Full Fighting Style


If the player gets knocked out with the style, you rapidly press your grapple button to get back up with some more health.

Bully SE: Boxing Player Knockout Recovery

42
Mod Showroom / Deal With It
« on: February 15, 2015, 01:55:50 AM »

43
Mod Releases / Anti-Prefect
« on: February 14, 2015, 07:48:33 PM »
Bully SE: Anti-Prefect w/ Download Link


This mod will make sure you will never get busted by anymore prefects with a cool grapple reversal called the "sprawl".


Download Link:
http://www.mediafire.com/download/0qkf240h310623q/Anti-Prefect+by+jedijosh920.zip

44
Mod Showroom / Mount Reversal Struggle
« on: February 13, 2015, 10:44:27 PM »
Bully SE: The Struggle

The struggle is real with mount reversals!

Node:

"/Global/Actions/Grapples/GrappleReversals/MountReversals/MountReversalToPunch/GIVE", "Act/Globals.act"

45
Mod Showroom / Sprawl Reversal
« on: February 13, 2015, 07:19:09 PM »
Bully SE: Jimmy Sprawl Reversal


Node:

"/Global/Actions/Grapples/GrappleReversals/StandingReversals/Sprawl/GIVE", "Act/Globals.act"

Pages: 1 2 [3] 4 5 ... 7