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


Author Topic: Rudy Missions Skip  (Read 3485 times)

0 Members and 1 Guest are viewing this topic.

Offline JacobDaMan19

  • Jr. Member
  • **
  • Posts: 6
    • View Profile
Rudy Missions Skip
« on: April 07, 2021, 05:20:18 PM »
So, in Bully (Or, Canis Canem Edit it's known here) in Chapter 3, the first mission is "Jealous Johnny", after picking up a present from your mother, but in Scholarship Edition, there was a subplot added in before "Jealous Johnny" about this "deranged" hobo named Rudy, who asks Jimmy to do a few things for him, Jimmy also has to play some Christmas Carols on-stage. If someone could skip these and restore Chapter 3 to it's PS2 glory, that'd be nice. The missions are "Balls of Snow", "Miracle on Bullworth St.", "Nutcrackin'" and "Rudy the Red Nosed Santa".

Offline Razc01na

  • Lord Slayer
  • Full Member
  • ***
  • Posts: 156
  • Gender: Male
  • Doom is life
    • View Profile
Re: Rudy Missions Skip
« Reply #1 on: April 07, 2021, 08:34:43 PM »
Looks a bit tricky...  I think those missions are started somewhere in the scripts and there is no easy way to edit those :(

Offline Hayley

  • _( :⁍ 」 )_
  • Global Moderator
  • I Live Here
  • *****
  • Posts: 16,956
    • View Profile
Re: Rudy Missions Skip
« Reply #2 on: April 07, 2021, 09:22:35 PM »
I hate those Annoying Ass Christmas Missions™ 😩 Be neat if those could be skipped and if the game could even bloody run

Offline SimonBestia

  • Full Member
  • ***
  • Posts: 293
  • Gender: Male
  • Bully-Board's Best Weeb
    • View Profile
    • Youtube Channel
Re: Rudy Missions Skip
« Reply #3 on: April 08, 2021, 02:48:21 AM »
This should do:
https://www.mediafire.com/file/p6k96fedau0e4v9/STimeCycle.lur/file

It checks for your savefile to be in Chapter 3, to have done the intro and that Jealous Johnny is not available.

Here's what I did, if you want to know:
Code: [Select]
repeat
Wait(0)
until SystemIsReady() and not IsStreamingBusy()

SEMissions = {"3_01A", "3_01C", "3_01D", "3_XM"}

if ChapterGet() == 2 and IsMissionCompleated("Chapt2Trans") and not IsMissionAvailable("3_01") then
for i, Mission in SEMissions do
MissionForceCompleted(Mission)
MissionSuccessCountInc(Mission)
end
end
« Last Edit: April 08, 2021, 11:09:05 AM by SimonBestia »

Offline JacobDaMan19

  • Jr. Member
  • **
  • Posts: 6
    • View Profile
Re: Rudy Missions Skip
« Reply #4 on: April 08, 2021, 04:44:43 AM »
Haven't tried to check if it works, but this should do:
https://www.mediafire.com/file/6wf3wf42w1qem2t/STimeCycle.lur/file

It checks for your savefile to be in Chapter 3, to have done the intro and that Jealous Johnny is not available.

Here's what I did, if you want to know:
Code: [Select]
repeat
Wait(0)
until SystemIsReady() and not IsStreamingBusy()

if ChapterGet() == 2 and IsMissionCompleated("Chapt2Trans") and not IsMissionAvailable("3_01") then
MissionForceCompleted("3_01A")
MissionForceCompleted("3_01C")
MissionForceCompleted("3_01D")
MissionForceCompleted("3_XM")
end
(Rushed code, I have online class in a little bit lol. Might update it later idk)
Sorry to sound like a bit of an idiot, but how do I install this?

Offline Razc01na

  • Lord Slayer
  • Full Member
  • ***
  • Posts: 156
  • Gender: Male
  • Doom is life
    • View Profile
Re: Rudy Missions Skip
« Reply #5 on: April 08, 2021, 06:53:54 AM »
You need IMG Tool 2.0 (you can get it from GTAGarage). Go to bully's files, open the scripts folder, open scripts.img with IMG Tool, and replace that file with the one you downloaded from here.

Offline JacobDaMan19

  • Jr. Member
  • **
  • Posts: 6
    • View Profile
Re: Rudy Missions Skip
« Reply #6 on: April 08, 2021, 07:07:01 AM »
This happened when I tried to do such.

Offline Razc01na

  • Lord Slayer
  • Full Member
  • ***
  • Posts: 156
  • Gender: Male
  • Doom is life
    • View Profile
Re: Rudy Missions Skip
« Reply #7 on: April 08, 2021, 07:22:17 AM »
This happened when I tried to do such.

Then you can delete the original first and add the modded.
Remember to backup first!!

Offline JacobDaMan19

  • Jr. Member
  • **
  • Posts: 6
    • View Profile
Re: Rudy Missions Skip
« Reply #8 on: April 08, 2021, 07:22:53 AM »
Way ahead of ya in terms of the backup.

Offline JacobDaMan19

  • Jr. Member
  • **
  • Posts: 6
    • View Profile
Re: Rudy Missions Skip
« Reply #9 on: April 08, 2021, 09:18:23 AM »
Well, did everything, showed the Preps who's boss and went to Chapter 3, slept, got the present, and the only mission showing up is "Balls of Snow"

Offline SimonBestia

  • Full Member
  • ***
  • Posts: 293
  • Gender: Male
  • Bully-Board's Best Weeb
    • View Profile
    • Youtube Channel
Re: Rudy Missions Skip
« Reply #10 on: April 08, 2021, 11:06:54 AM »
Yeah, tried it and it didn't work, so I went ahead and fixed it.
I updated the comment. Try it again.

Offline JacobDaMan19

  • Jr. Member
  • **
  • Posts: 6
    • View Profile
Re: Rudy Missions Skip
« Reply #11 on: April 08, 2021, 01:38:14 PM »
Alright, it worked! Thanks!