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.

Messages - SimonBestia

Pages: 1 2 [3] 4 5 ... 17
31
Modding Questions/Help / Re: Adding custom interior/collision
« on: December 04, 2021, 03:29:42 AM »
I think it was Cautious who did that for SWEGTA.
He also made a 2nd floor for the Boys' Dorm but didn't share how. You could try asking.

32
LUA Scripting Help / Re: How to play a node after one finishes?
« on: November 26, 2021, 03:29:26 AM »
Not really unless you can't be certain he's already playing that animation.
I don't know what you're trying to do here.

33
LUA Scripting Help / Re: How to play a node after one finishes?
« on: November 25, 2021, 11:08:27 AM »
The way you're doing it seems to be fine.
Normally, I'd just do something like:
Code: [Select]
PedSetActionNode(ped, "/Global/Ambient/Scripted/Empty/EmptyNode/TrueEmptyNode", "Ambient.act")
   repeat
      Wait(0)
   until not PedIsPlaying(ped, "/Global/Ambient/Scripted/Empty/EmptyNode/TrueEmptyNode", "Ambient.act", true)
   PedSetActionNode(ped, "/Global/Ambient/Scripted/Empty/EmptyNode/TrueEmptyNode", "Ambient.act")
end
(I used basic nodes for the sake of the example.)

34
Modding Questions/Help / Re: How to Disable ALL Errands
« on: November 20, 2021, 06:33:35 AM »
I think the professional modders or this modding community are dead!  >:(

You're not wrong.
The community IS inactive.

As for your original question, I don't know if it's possible.

35
Textures Help / Re: Glitched Textures since starting Chapter IV
« on: October 30, 2021, 03:27:05 AM »
The issue here is likely with the Texture Overhaul mod.
You either installed it incorrectly, or the author didn't do something properly for the Chapter 4 textures, as the game uses different ones during spring.

37
Modding Questions/Help / Re: Why can't I spawn the school bus?
« on: October 05, 2021, 05:51:38 AM »
Because it's not an actual vehicle.
Just a model that moves a bit for the sake of the scene.

38
Modding Questions/Help / Re: PedIsHit problem
« on: October 04, 2021, 08:42:18 AM »
I know what you mean and I already explained why.
Once you grab a ped, you're not fighting in the traditional sense.
You're just watching animations with certain properties.

You can't use PedIsHit anymore.
You'd have to use the actual nodes you're performing for conditions.

39
Modding Questions/Help / Re: PedIsHit problem
« on: October 04, 2021, 03:37:47 AM »
Because it's how the game works.
When it's about grappling moves, you're pretty much just watching animations with properties at a certain time (playing sounds, applying damage, etc).
Not much you can do with it on Lua.

deadpoolXYZ explained this to me.

40
You can find most (except SE-related) IDs in the RobertoTest.lua file.
The developer used it to pass every mission.

The Go-Kart races are all "GoKart_GPX" and "GoKart_SRX".
(X is any number from 1-3)

41
Oh, I see.
Didn't know that.

42
Not sure where you got the idea that Small Offences' ID was 70.
That's not how they work. Its ID is "2_S07".

I tried your code and it works. The Shop Classes are all passed except 5.
If you don't get the bike that's probably because it's controlled by the class script. So you need to actually do the class to get the bike, not just pass it.
What you should try is to use the script to pass Classes 1-3 and then attend Class 4.

You didn't put the Go-Kart Minigames in the code, so of course, it doesn't work.
I tried them and the Go-kart gets unlocked, too.

43
Bully Modding / Re: Mod to carjack cars/vans.
« on: September 25, 2021, 03:40:20 AM »
As I said, you can't "steal" cars on Bully.

If you damage a car the ped inside will obviously come out to catch you. That's normal behaviour.
You can then get inside with a simple mod. (It's literally one line of code to allow Jimmy to get in a vehicle)
Code: [Select]
PedSetFlag(gPlayer, 42, true)
Again, you just can't get in if someone is already inside.

44
Bully Modding / Re: Mod to carjack cars/vans.
« on: September 24, 2021, 03:13:19 PM »
Bully lacks such a feature.
If you can just be happy with a mod that allows you to enter cars (provided no one's inside), that's easy.

45
Requests / Re: Beta Jimmy face
« on: September 23, 2021, 03:54:21 AM »
Most .dat files in Bully are just text documents.
Anything will do, even Windows Notepad.

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