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


Author Topic: Darby and Johnny BOSS BETA Mission  (Read 4420 times)

0 Members and 1 Guest are viewing this topic.

Offline SHAPADO1245

  • Jr. Member
  • **
  • Posts: 42
  • Gender: Male
  • "I'm still gonna beat you!" - Johnny Vincent
    • View Profile
Darby and Johnny BOSS BETA Mission
« on: February 21, 2021, 10:16:59 PM »
     THIS IS A BETA.

     This mod is about a "BOSS" fight with Darby and Johnny.
and... the download is there: http://www.mediafire.com/file/og6x0bdj81gqt6e/Darby_and_Johnny_BOSS_BETA_Mission.rar/file
any error please tell me in this post.

     ~~~Notes for ScriptMod Professionals~~~


     The commands AreaClearSpawners(), AreaClearAllPeds() and AreaClearAllVehicles() doesn't work and I don't know why  :(.
And I have the idea to use the "TextPrintString" but i change the seconds and but it keeps showing up for less than 1 second, like it’s blinking.
I downloaded another mod that uses TextPrintString in the script, and it also didn't work (appears the same error).
If you know why this happens to me or how to fix it, please answer me in this post. (I use 1.200 Bully Version)
I really need you help. :)   (And sorry if I miss some english word).

     and if you want to see the Source Code.lua, you can but if you want use the Source Code.lua to build a mod
don't forget to put my name in the Credits.

Offline SimonBestia

  • Full Member
  • ***
  • Posts: 293
  • Gender: Male
  • Bully-Board's Best Weeb
    • View Profile
    • Youtube Channel
Re: Darby and Johnny BOSS BETA Mission
« Reply #1 on: February 22, 2021, 04:07:18 AM »
We can't help you with the issues you're having if you don't share the source code.
Add it in a spoiler, or something.

Some issues I've noticed:
  • Johnny is in an A-pose most of the time.
  • His boss fight music is the wrong one.
  • When you return to freeroam, his song doesn't stop and the clock is still paused.
« Last Edit: February 22, 2021, 04:32:49 AM by SimonBestia »

Offline SHAPADO1245

  • Jr. Member
  • **
  • Posts: 42
  • Gender: Male
  • "I'm still gonna beat you!" - Johnny Vincent
    • View Profile
Re: Darby and Johnny BOSS BETA Mission
« Reply #2 on: February 22, 2021, 09:08:53 AM »
We can't help you with the issues you're having if you don't share the source code.
Add it in a spoiler, or something.

Some issues I've noticed:
  • Johnny is in an A-pose most of the time.
  • His boss fight music is the wrong one.
  • When you return to freeroam, his song doesn't stop and the clock is still paused.

Ok i gonna put a new archive with the source code. But i think i need to add more things in this mod, like a ide.img, to avoid the A pose Johnny and some otherthings. And I don't know why the clock still paused, in the source code I gonna see this. The boss fight music is another one, the johnny theme or the darby theme?



Source Code:http://www.mediafire.com/file/vdi4cae2cb18f3j/Source_Code.lua/file

(And sorry to not add the source code before, I just forget)
« Last Edit: February 22, 2021, 09:10:58 AM by SHAPADO1245 »

Offline SimonBestia

  • Full Member
  • ***
  • Posts: 293
  • Gender: Male
  • Bully-Board's Best Weeb
    • View Profile
    • Youtube Channel
Re: Darby and Johnny BOSS BETA Mission
« Reply #3 on: February 22, 2021, 11:12:00 AM »
For the boss fight theme, I meant Johnny's.
You're playing MS_FightingJohnnyVincentFight when it should be MS_FightingJohnnyVincentBossFight. The former is the theme used when Johnny is on his bike.

Here are some general notes about your code, just for the sake of improving how you write it:
[spoiler_block]
In Bully's Lua, it's common practice to use the "main" function to do stuff like running every function 1 by 1, and only use MissionSetup for stuff like loading animations, etc... So:
Code: [Select]
MissionSetup = function() -- Functions Setups

BeforeMission()
YouAreAboutToBeBurdenedWithABlackEye()
AwThiIsGonnaBeFun()
AfterMission()

end
^You should rename this to main = function()

In Lua, in general, it's common practice to NOT change line after an "and". So:
Code: [Select]
BeforeMission = function() -- Real MissionSetup

repeat
Wait(0)
until SystemIsReady() and -- Wait the SystemIsReady and Is(Not)StreamingBusy (Effective in a very low spec PCs or PS2)
not IsStreamingBusy()

end
^This would be better: until SystemIsReady() and not IsStreamingBusy()

In Bully's Lua, it's common practice to have the last function that resets everything called MissionCleanup. So:
Code: [Select]
AfterMission = function() -- literally After-Mission

PedSetMaxHealth(gPlayer, 200)
PedSetHealth(gPlayer, 200)
DisablePunishmentSystem(false)
AreaTransitionXYZ(0, 260.1955872, -139.9802551, 6.109952927)
MissionSucceed()

end
^Rename this to MissionCleanup = function()
[/spoiler_block]

Here are the solutions to the issues you're having:
[spoiler_block]
First, AreaClearSpawners(), AreaClearAllPeds() and AreaClearAllVehicles.

^These are a "one-time thing", as in, they do what they do ONCE, and then they stop.
Solution: Either put them in a "while true do" loop, or, even better, don't use them. Instead, use StopPedProduction(false/true) or NonMissionPedGenerationDisable/Enable().
These will work forever and don't need to be in a loop.
Only use one of them, depending on what you need. The former removes ALL peds, the latter only removes peds that aren't related to the mission, but some peds like scripted ones(eg, football field gym peds) will still spawn.

Second, TextPrintString works like this:
Code: [Select]
TextPrintString("Top Text. I will last 3 seconds", 3, 1)
TextPrintString("Bottom Text. I will last 4 seconds", 4, 2)

Now for the code itself:
Code: [Select]
ImportScript("Library/LibTable.lua")
ImportScript("Library/LibTrigger.lua")
ImportScript("Library/LibSchool.lua")
ImportScript("SGlFunc.lua")
ImportScript("SZone.lua")
^NONE of these are necessary. These are already used by the game at all times. You can remove them.

Code: [Select]
AreaTransitionXYZ(27, -730, 382, 299) -- Teleport the "Camera" to Glass Jaw Boxing Club (Preps Boxing Gym) in the 2nd floor
PlayerSetPosXYZArea(-730, 382, 299, 27) -- Teleport the Player to Glass Jaw Boxing Club (Preps Boxing Gym) in the 2nd floor
AreaTransitionXYZ is NOT the camera. It's the player.
The only difference between AreaTransitionXYZ and PlayerSetPosXYZArea is that the former is a better function and it waits for the area surrounding Jimmy to load, before continuing with the script. You shouldn't use both.

Code: [Select]
PedSetFaction(darby, 5) and PedSetFaction(egjohnny, 4)
Peds are already programmed to be in a specific faction. You don't need to tell the game.
[/spoiler_block]

Here's how to stop the music, unpause the clock, and fix Johnny's A-pose:
[spoiler_block]
The music is stopped with the function SoundStopStream()

The clock is paused/unpaused with PauseGameClock/UnpauseGameClock().
(ArcRace1 already pauses the clock. You just have to unpause it in the MissionCleanup function)

You should be able to fix Johnny's animations by using these:
Code: [Select]
LoadAnimationGroup("3_BFightJohnnyV")
LoadAnimationGroup("P_Striker")
LoadAnimationGroup("Boxing")
LoadAnimationGroup("NIS_3_B")
LoadActionTree("Act/Conv/3_B.act")
LoadActionTree("Act/Anim/G_Ranged_A.act")
^You can find them in 3_B.lua.
You don't need to touch ide.img, but if they don't work, let me know.
[/spoiler_block]

Mod feedback:
[spoiler_block]
4000 and 7500 are WAY too high health values. I basically cheated to defeat both Darby and Johnny, and it wasn't that fun because they don't really fight back.
Bully, in general, is too easy.
[/spoiler_block]
« Last Edit: February 22, 2021, 11:21:22 AM by SimonBestia »

Offline SHAPADO1245

  • Jr. Member
  • **
  • Posts: 42
  • Gender: Male
  • "I'm still gonna beat you!" - Johnny Vincent
    • View Profile
Re: Darby and Johnny BOSS BETA Mission
« Reply #4 on: February 22, 2021, 12:50:25 PM »
For the boss fight theme, I meant Johnny's.
You're playing MS_FightingJohnnyVincentFight when it should be MS_FightingJohnnyVincentBossFight. The former is the theme used when Johnny is on his bike.

Here are some general notes about your code, just for the sake of improving how you write it:
[spoiler_block]
In Bully's Lua, it's common practice to use the "main" function to do stuff like running every function 1 by 1, and only use MissionSetup for stuff like loading animations, etc... So:
Code: [Select]
MissionSetup = function() -- Functions Setups

BeforeMission()
YouAreAboutToBeBurdenedWithABlackEye()
AwThiIsGonnaBeFun()
AfterMission()

end
^You should rename this to main = function()

In Lua, in general, it's common practice to NOT change line after an "and". So:
Code: [Select]
BeforeMission = function() -- Real MissionSetup

repeat
Wait(0)
until SystemIsReady() and -- Wait the SystemIsReady and Is(Not)StreamingBusy (Effective in a very low spec PCs or PS2)
not IsStreamingBusy()

end
^This would be better: until SystemIsReady() and not IsStreamingBusy()

In Bully's Lua, it's common practice to have the last function that resets everything called MissionCleanup. So:
Code: [Select]
AfterMission = function() -- literally After-Mission

PedSetMaxHealth(gPlayer, 200)
PedSetHealth(gPlayer, 200)
DisablePunishmentSystem(false)
AreaTransitionXYZ(0, 260.1955872, -139.9802551, 6.109952927)
MissionSucceed()

end
^Rename this to MissionCleanup = function()
[/spoiler_block]

Here are the solutions to the issues you're having:
[spoiler_block]
First, AreaClearSpawners(), AreaClearAllPeds() and AreaClearAllVehicles.

^These are a "one-time thing", as in, they do what they do ONCE, and then they stop.
Solution: Either put them in a "while true do" loop, or, even better, don't use them. Instead, use StopPedProduction(false/true) or NonMissionPedGenerationDisable/Enable().
These will work forever and don't need to be in a loop.
Only use one of them, depending on what you need. The former removes ALL peds, the latter only removes peds that aren't related to the mission, but some peds like scripted ones(eg, football field gym peds) will still spawn.

Second, TextPrintString works like this:
Code: [Select]
TextPrintString("Top Text. I will last 3 seconds", 3, 1)
TextPrintString("Bottom Text. I will last 4 seconds", 4, 2)

Now for the code itself:
Code: [Select]
ImportScript("Library/LibTable.lua")
ImportScript("Library/LibTrigger.lua")
ImportScript("Library/LibSchool.lua")
ImportScript("SGlFunc.lua")
ImportScript("SZone.lua")
^NONE of these are necessary. These are already used by the game at all times. You can remove them.

Code: [Select]
AreaTransitionXYZ(27, -730, 382, 299) -- Teleport the "Camera" to Glass Jaw Boxing Club (Preps Boxing Gym) in the 2nd floor
PlayerSetPosXYZArea(-730, 382, 299, 27) -- Teleport the Player to Glass Jaw Boxing Club (Preps Boxing Gym) in the 2nd floor
AreaTransitionXYZ is NOT the camera. It's the player.
The only difference between AreaTransitionXYZ and PlayerSetPosXYZArea is that the former is a better function and it waits for the area surrounding Jimmy to load, before continuing with the script. You shouldn't use both.

Code: [Select]
PedSetFaction(darby, 5) and PedSetFaction(egjohnny, 4)
Peds are already programmed to be in a specific faction. You don't need to tell the game.
[/spoiler_block]

Here's how to stop the music, unpause the clock, and fix Johnny's A-pose:
[spoiler_block]
The music is stopped with the function SoundStopStream()

The clock is paused/unpaused with PauseGameClock/UnpauseGameClock().
(ArcRace1 already pauses the clock. You just have to unpause it in the MissionCleanup function)

You should be able to fix Johnny's animations by using these:
Code: [Select]
LoadAnimationGroup("3_BFightJohnnyV")
LoadAnimationGroup("P_Striker")
LoadAnimationGroup("Boxing")
LoadAnimationGroup("NIS_3_B")
LoadActionTree("Act/Conv/3_B.act")
LoadActionTree("Act/Anim/G_Ranged_A.act")
^You can find them in 3_B.lua.
You don't need to touch ide.img, but if they don't work, let me know.
[/spoiler_block]

Mod feedback:
[spoiler_block]
4000 and 7500 are WAY too high health values. I basically cheated to defeat both Darby and Johnny, and it wasn't that fun because they don't really fight back.
Bully, in general, is too easy.
[/spoiler_block]

Ok i'll try fix this in the code and see if work, thanks

EDIT: All the things work, the music stop at the end and the correct johnny vincent theme is added. Just the Johnny still A-Pose, maybe I use wrong the LoadAnimationGroup code or just don't work and I have to edit the ide.img. Darby Boss Battle jimmy health = 150, darby health = 1750
Johnny Boss Battle jimmy health = 300, johnny health = 2000 http://www.mediafire.com/file/l216s4ilps9fw1k/Darby_and_Johnny_BOSS_BETA_Mission_v0.1.1.rar/file
« Last Edit: February 22, 2021, 02:17:49 PM by SHAPADO1245 »

Offline SHAPADO1245

  • Jr. Member
  • **
  • Posts: 42
  • Gender: Male
  • "I'm still gonna beat you!" - Johnny Vincent
    • View Profile
Re: Darby and Johnny BOSS BETA Mission
« Reply #5 on: February 22, 2021, 05:00:15 PM »
THIS IS A BETA
Darby and Johnny BOSS Battle v0.1.2 BETA

---Update 0.1.2:
* Bug Fixes;
   Johnny Vincent A-Pose;
   Darby Harrington Fighting Style;
   NonMission Peds;
   Johnny Vincent theme fix.
* Features.
   TextPrintString test.
   

----- Mod Installation
DON'T FORGET THE BACKUP
Easy Installation:
1) Copy the Scripts.img and paste in "Bully Folder"/Scripts/Scripts.img
2) Copy the Scripts.dir and paste in "Bully Folder"/Scripts/Scripts.dir
3) Copy the Objects and paste in the bully folder
4) Copy the Config and paste in the bully folder
5) Just open the game and go to a Arcade Machine in the Boys' Dorm in the school


DON'T FORGET THE BACKUP
Hard Installation:(If you don't understand this just ignore that)
1) Copy the ArcRace1.lur
2) Open the Scripts.img in you bully folder
3) Delete the ArcRace1.lur and add the new ArcRace1.lur
4) Rebuild the file
5) Copy the Attitude.dat, PedPop.dat and pedstats.dat and paste in "Bully Folder"/Config/dat
6) Copy the ide.img and ide.dir
7) Just open the game and go to a Arcade Machine in the Boys' Dorm in the school

again DON'T forget to do a BACKUP



----- Notes for ScriptMod Professional -----

If you want to see the Source Code.lua, you can but if you want use the Source Code.lua to build a mod
don't forget to put my name in the Credits.

DOWNLOAD: http://www.mediafire.com/file/aeywd4nrkdf7iva/Darby_and_Johnny_BOSS_BETA_Mission_v0.1.2.rar/file

Offline SHAPADO1245

  • Jr. Member
  • **
  • Posts: 42
  • Gender: Male
  • "I'm still gonna beat you!" - Johnny Vincent
    • View Profile
Re: Darby and Johnny BOSS BETA Mission
« Reply #6 on: February 22, 2021, 08:04:22 PM »
I saw a problem when you lose in the mission, which would be when you are knocked down, it is impossible to lose the mission because even if you have 0 life "You Passed" will appear in the end. If anyone has a solution for this you can give me a reply.

And if you want give me some tips just send me a reply in a "Scripting Modding" section.
New topic in Scripting Modding = https://bully-board.com/index.php?topic=25725
« Last Edit: February 22, 2021, 09:19:20 PM by SHAPADO1245 »

Offline SHAPADO1245

  • Jr. Member
  • **
  • Posts: 42
  • Gender: Male
  • "I'm still gonna beat you!" - Johnny Vincent
    • View Profile
Re: Darby and Johnny BOSS BETA Mission
« Reply #7 on: February 23, 2021, 11:14:41 AM »
THIS IS A BETA
Darby and Johnny BOSS Battle v0.1.3


--- Update 0.1.2:
* Bug Fixes;
   Johnny Vincent A-Pose
   Darby Harrington Fighting Style
   NonMission Peds
   Johnny Vincent theme fix
* Features;
   TextPrintString test

--- Update 0.1.3:
* Bug Fixes;
   Mission Fail
   


----- Mod Installation
DON'T FORGET THE BACKUP
Easy Installation:
1) Copy the Scripts.img and paste in "Bully Folder"/Scripts/Scripts.img
2) Copy the Scripts.dir and paste in "Bully Folder"/Scripts/Scripts.dir
3) Copy the Objects folder and paste in the bully folder
4) Copy the Config folder and paste in the bully folder
5) Just open the game and go to a Arcade Machine in the Boys' Dorm in the school

DON'T FORGET THE BACKUP
Hard Installation:(If you don't understand this just ignore that)
1) Copy the ArcRace1.lur
2) Open the Scripts.img in you bully folder
3) Delete the ArcRace1.lur and add the new ArcRace1.lur
4) Rebuild the file
5) Copy the pedstats.dat and paste in "Bully Folder"/Config/dat
6) Copy the ide.img and ide.dir
7) Just open the game and go to a Arcade Machine in the Boys' Dorm in the school

again DON'T forget to do a BACKUP



~~~~~ Notes for ScriptMod Professional ~~~~~

If you want to see the Source Code.lua, you can but if you want use the Source Code.lua to build a mod
don't forget to put my name in the Credits.

DOWNLOAD: http://www.mediafire.com/file/76mrjcf701r255x/Darby_and_Johnny_BOSS_BETA_Mission_v0.1.3.rar/file

Offline SHAPADO1245

  • Jr. Member
  • **
  • Posts: 42
  • Gender: Male
  • "I'm still gonna beat you!" - Johnny Vincent
    • View Profile
Re: Darby and Johnny BOSS BETA Mission
« Reply #8 on: February 23, 2021, 12:52:18 PM »
THIS IS A BETA.
Darby and Johnny BOSS Battle v0.1.4


--- Update 0.1.2:
* Bug Fixes;
   * Johnny Vincent A-Pose;
   * Darby Harrington Fighting Style;
   * NonMission Peds;
   * Johnny Vincent theme fix.
* Features;
   * TextPrintString test.


--- Update 0.1.3:
* Bug Fixes;
   * Mission Fail.


--- Update 0.1.4:
* Features;
   * Darby and Johnny boss bar;
* Changes;
   * TextPrintString time, 3 seconds to 2.5 seconds;
   * More 8,87% Johnny attack frequency;
   * More 15% Johnny damage scale.
   

----- Mod Installation
DON'T FORGET THE BACKUP
Easy Installation:
1) Copy the Scripts.img and paste in "Bully Folder"/Scripts/Scripts.img
2) Copy the Scripts.dir and paste in "Bully Folder"/Scripts/Scripts.dir
3) Copy the Objects folder and paste in the bully folder
4) Copy the Config folder and paste in the bully folder
5) Just open the game and go to a Arcade Machine in the Boys' Dorm in the school


DON'T FORGET THE BACKUP
Hard Installation:(If you don't understand this just ignore that)
1) Copy the ArcRace1.lur
2) Open the Scripts.img in you bully folder
3) Delete the ArcRace1.lur and add the new ArcRace1.lur
4) Rebuild the file
5) Copy the pedstats.dat and paste in "Bully Folder"/Config/dat
6) Copy the ide.img and ide.dir
7) Just open the game and go to a Arcade Machine in the Boys' Dorm in the school

again DON'T forget to do a BACKUP



~~~~~ Notes for ScriptMod Professional ~~~~~

If you want to see the Source Code.lua, you can but if you want use the Source Code.lua to build a mod
don't forget to put my name in the Credits.



DOWNLOAD: http://www.mediafire.com/file/uy9c4t3zumy65lh/Darby_and_Johnny_BOSS_BETA_Mission_v0.1.4.rar/file

Offline SHAPADO1245

  • Jr. Member
  • **
  • Posts: 42
  • Gender: Male
  • "I'm still gonna beat you!" - Johnny Vincent
    • View Profile
Re: Darby and Johnny BOSS BETA Mission
« Reply #9 on: February 26, 2021, 12:09:56 AM »
THIS IS A BETA. SOURCE CODE WITH SPOILER
Darby and Johnny BOSS Battle v0.2.0
Mod Instalation in the end.

--- Update 0.1.2:
* Bug Fixes;
   * Johnny Vincent A-Pose;
   * Darby Harrington Fighting Style;
   * NonMission Peds;
   * Johnny Vincent theme fix.
* Features;
   * TextPrintString test.


--- Update 0.1.3:
* Bug Fixes;
   * Mission Fail.


--- Update 0.1.4:
* Features;
   * Darby and Johnny boss bar;
* Changes;
   * TextPrintString time, 3 seconds to 2.5 seconds;
   * More 8,87% Johnny attack frequency;
   * More 15% Johnny damage scale.

--- Update 0.2.0:
* Changes;
   * Code Syntaxes;
   * You can't use your weapons; (In Secret Mode. Even be impossible to use the elastic ball)

* Features;
   * A Secret Mode (SPOILER ALERT IN Source Code.lua or Current Source Code.lua);
   * In Secret mode Johnny Regen is 11.7% more fast. (In Secret Mode)
   * Animations; (In Secret Mode)
   * After Johnny reaches 1000 health or less he will give 20% more damage (In Secret Mode).
   * Johnny will do the "Chest Counter" once he reaches 1000 health or less (In Secret Mode).

* Bug Fixes;
   * Johnny Vincent Regeneration;
        * EDIT: Secret Mode bug




----- Mod Installation:

Download: http://www.mediafire.com/file/fsgyx6zo6i492tz/Darby_and_Johnny_BOSS_BETA_Mission_v0.2.0.rar/file

DON'T FORGET THE BACKUP
Easy Installation:
1) Copy the Scripts.img and paste in "Bully Folder"/Scripts/Scripts.img
2) Copy the Scripts.dir and paste in "Bully Folder"/Scripts/Scripts.dir
3) Copy the Objects folder and paste in the bully folder
4) Copy the Config folder and paste in the bully folder
5) Just open the game and go to a Arcade Machine in the Boys' Dorm in the school


DON'T FORGET THE BACKUP
Hard Installation:(If you don't understand this just ignore that)
1) Open the Scripts.img in you bully folder
2) Delete the ArcRace1.lur and add the new ArcRace1.lur
3) Rebuild the file
4) Copy the pedstats.dat and paste in "Bully Folder"/Config/dat
5) Copy the ide.img and ide.dir
6) Just open the game and go to a Arcade Machine in the Boys' Dorm in the school

again DON'T FORGET THE BACKUP



~~~~~ Notes for ScriptMod Professional ~~~~~

If you want to see the Source Code.lua, you can (SPOILER ALERT) but if you want use the
Source Code.lua/Current Source Code.lua to build a mod don't forget to put my name in the Credits.
« Last Edit: February 26, 2021, 08:25:57 AM by SHAPADO1245 »

Offline SHAPADO1245

  • Jr. Member
  • **
  • Posts: 42
  • Gender: Male
  • "I'm still gonna beat you!" - Johnny Vincent
    • View Profile
Re: Darby and Johnny BOSS BETA Mission
« Reply #10 on: February 27, 2021, 02:56:41 PM »
THIS IS A BETA. SOURCE CODE WITH SPOILER
Darby and Johnny BOSS Battle v0.2.1

Mod Instalation in the end.



--- Update 0.2.1:
* Changes;
   * Function removed (JohnnyMagnetized);
* Features;
   * Youtube video showing the mod: (Coming Soon);
   * 2nd, 3rd and 4th stage of Johnny Boss (In Secret Mode);
   * Effects and particles (In Secret Mode);
* Bug Fixes;
   * Musics volume.

--- Update 0.2.0:
* Changes;
   * Code Syntaxes;
   * You can't use your weapons; (In Secret Mode. Even be impossible to use the elastic ball)

* Features;
   * A Secret Mode (SPOILER ALERT IN Source Code.lua or Current Source Code.lua);
   * In Secret mode Johnny Regen is 11.7% more fast (In Secret Mode);
   * Animations (In Secret Mode);
   * After Johnny reaches 1000 health or less he will give 20% more damage (In Secret Mode);
   * Johnny will do the "Chest Counter" once he reaches 1000 health or less (In Secret Mode);

* Bug Fixes;
   * Johnny Vincent Regeneration.

--- Update 0.1.4:
* Features;
   * Darby and Johnny boss bar;
* Changes;
   * TextPrintString time, 3 seconds to 2.5 seconds;
   * More 8,87% Johnny attack frequency;
   * More 15% Johnny damage scale.

--- Update 0.1.3:
* Bug Fixes;
   * Mission Fail.

--- Update 0.1.2:
* Bug Fixes;
   * Johnny Vincent A-Pose;
   * Darby Harrington Fighting Style;
   * NonMission Peds;
   * Johnny Vincent theme fix.
* Features;
   * TextPrintString test.



----- Mod Installation:-----

Download: http://www.mediafire.com/file/ku4u0bothvaargq/Darby_and_Johnny_BOSS_BETA_Mission_v0.2.1.rar/file

DON'T FORGET THE BACKUP

Easy Installation:
1) Copy the Scripts.img and paste in "Bully Folder"/Scripts/Scripts.img
2) Copy the Scripts.dir and paste in "Bully Folder"/Scripts/Scripts.dir
3) Copy the Objects folder and paste in the bully folder
4) Copy the Config folder and paste in the bully folder
5) Just open the game and go to a Arcade Machine in the Boys' Dorm in the school


DON'T FORGET THE BACKUP

Hard Installation:(If you don't understand this just ignore that)
1) Open the Scripts.img in you bully folder
2) Delete the ArcRace1.lur and add the new ArcRace1.lur
3) Rebuild the file
4) Copy the pedstats.dat and paste in "Bully Folder"/Config/dat
5) Copy the ide.img and ide.dir
6) Just open the game and go to a Arcade Machine in the Boys' Dorm in the school

again DON'T FORGET THE BACKUP



~~~~~ Notes for ScriptMod Professional ~~~~~

If you want to see the Source Code.lua, you can (SPOILER ALERT) but if you want use the
Source Code.lua/Current Source Code.lua to build a mod don't forget to put my name in the Credits.

Youtube Channel: https://www.youtube.com/channel/UC1aa9Emj9wQnaGg9Q7601zQ
Bully-Board Script Modding: https://bully-board.com/index.php?topic=25725.0

Offline SHAPADO1245

  • Jr. Member
  • **
  • Posts: 42
  • Gender: Male
  • "I'm still gonna beat you!" - Johnny Vincent
    • View Profile
Re: Darby and Johnny BOSS BETA Mission
« Reply #11 on: March 01, 2021, 02:51:32 PM »
THIS IS A BETA. SOURCE CODE WITH SPOILER
Darby and Johnny BOSS Battle v0.2.2

Mod Instalation in the end.



--- Update 0.2.2:
* Changes;
   * Peanuts have 25% more speed of base speed (In Secret Mode);
   * Imortal Ghosts have 50% more speed of base speed (In Secret Mode);
   * Once you get to Stage 5 then... the boss recovery all the life (In Secret Mode);
   * Once you get to Stage 5 the EffectGymOnFire appears with a Imortal Ghosts (In Secret Mode);
   * The Imortal Ghosts of Stage 5 don't damage you, their service is to hinder (In Secret Mode);
   * Boss in Stage 5 deal 2x of base damage (In Secret Mode);
* Features;
   * GRlead_Johnny.nif, GRlead_Johnny.nft, GRlead_Johnny_EG.nif and GRlead_Johnny_EG.nft
   (Models Textures), Models Instalation in the end;
   * Johnny regen the life 3x more fast when he stop fight (In Secret Mode);
   * Stage 5 (In Secret Mode);
   * Youtube video showing 100% of the mod: Coming Soon.
* Bug Fixes;
   * When the Peanuts showed up, Johnny had a chance to get stuck.

--- Update 0.2.1:
* Changes;
   * Function removed (JohnnyMagnetized);
* Features;
   * Youtube video showing the mod: https://www.youtube.com/watch?v=LI9azvFjxXI;
   * 2nd, 3rd and 4th stage of Johnny Boss (In Secret Mode);
   * Effects and particles (In Secret Mode);
* Bug Fixes;
   * Musics volume.

--- Update 0.2.0:
* Changes;
   * Code Syntaxes;
   * You can't use your weapons; (In Secret Mode. Even be impossible to use the elastic ball)

* Features;
   * A Secret Mode (SPOILER ALERT IN Source Code.lua or Current Source Code.lua);
   * In Secret mode Johnny Regen is 11.7% more fast (In Secret Mode);
   * Animations (In Secret Mode);
   * After Johnny reaches 1000 health or less he will give 20% more damage (In Secret Mode);
   * Johnny will do the "Chest Counter" once he reaches 1000 health or less (In Secret Mode);

* Bug Fixes;
   * Johnny Vincent Regeneration.

--- Update 0.1.4:
* Features;
   * Darby and Johnny boss bar;
* Changes;
   * TextPrintString time, 3 seconds to 2.5 seconds;
   * More 8,87% Johnny attack frequency;
   * More 15% Johnny damage scale.

--- Update 0.1.3:
* Bug Fixes;
   * Mission Fail.

--- Update 0.1.2:
* Bug Fixes;
   * Johnny Vincent A-Pose;
   * Darby Harrington Fighting Style;
   * NonMission Peds;
   * Johnny Vincent theme fix.
* Features;
   * TextPrintString test.



----- Mod Installation:-----

Download: http://www.mediafire.com/file/cji9st664xttn8f/Darby_and_Johnny_BOSS_BETA_Mission_v0.2.2.rar/file
 
DON'T FORGET THE BACKUP

Easy Installation:
1) Copy the Scripts.img and paste in "Bully Folder"/Scripts/Scripts.img
2) Copy the Scripts.dir and paste in "Bully Folder"/Scripts/Scripts.dir
3) Copy the Objects folder and paste in the bully folder
4) Copy the Config folder and paste in the bully folder
5) Just open the game and go to a Arcade Machine in the Boys' Dorm in the school


DON'T FORGET THE BACKUP

Hard Installation:(If you don't understand this just ignore that)
0) Download the IMG Tool 2.0
1) Open the Scripts.img in you bully folder
2) Delete the ArcRace1.lur and add the new ArcRace1.lur
3) Rebuild the file
4) Copy the pedstats.dat and paste in "Bully Folder"/Config/dat
5) Copy the ide.img and ide.dir
6) Just open the game and go to a Arcade Machine in the Boys' Dorm in the school

again DON'T FORGET THE BACKUP

Models Instalation:
0) Download the IMG Tool 2.0
1) Open the "Bully Folder"/Stream/World.img (with IMG Tool 2.0)
2) Delete the GRlead_Johnny.nif, GRlead_Johnny.nft, GRlead_Johnny_EG.nif and GRlead_Johnny_EG.nft
3) Hold Ctrl and Press A, then Add the GRlead_Johnny.nif, GRlead_Johnny.nft,
GRlead_Johnny_EG.nif and GRlead_Johnny_EG.nft of the Mod folder
4) go in "Commands" and "Rebuild Archive" and wait some time (takes like 1 or 2 minutes)
5) Just open the game.


~~~~~ Notes for ScriptMod Professional ~~~~~

If you want to see the Source Code.lua, you can (SPOILER ALERT) but if you want use the
Source Code.lua/Current Source Code.lua to build a mod don't forget to put my name in the Credits.

Youtube Channel: https://www.youtube.com/channel/UC1aa9Emj9wQnaGg9Q7601zQ
Bully-Board Script Modding: https://bully-board.com/index.php?topic=25725.0
« Last Edit: March 01, 2021, 04:04:21 PM by SHAPADO1245 »