Bully-Board

Bully Modding Section => Mod Releases => Topic started by: perfectozzyozborne on May 30, 2013, 07:31:40 PM

Title: Nerd Body Guard Advanced
Post by: perfectozzyozborne on May 30, 2013, 07:31:40 PM
This mod is a nerd bodyguard mod, It has:

A music player with:

FinalShowdownMid
JockBossBattle
NerdFight

It has all nerd members

Less buggy

And is 100% fun!



Here is the Download!

Title: Re: Nerd Body Guard Advanced
Post by: perfectozzyozborne on May 31, 2013, 02:32:49 AM
Here is a video for it :)

Bully SE: Nerd Mod Advanced (http://www.youtube.com/watch?v=-nrf_Krr-60#)
Title: Re: Nerd Body Guard Advanced
Post by: perfectozzyozborne on August 12, 2013, 06:32:05 AM
It's been a looooooooong time!  >:(
Title: Re: Nerd Body Guard Advanced
Post by: FaZe on August 12, 2013, 10:41:09 AM
Nice mod, but why didn't you put it all in one post.
Title: Re: Nerd Body Guard Advanced
Post by: perfectozzyozborne on August 12, 2013, 12:11:35 PM
The video was still uploading :L
Title: Re: Nerd Body Guard Advanced
Post by: Unstoppable12 on August 12, 2013, 01:00:14 PM
i like this mod but its better if the body guards are the greasers, can u make one for me?
Title: Re: Nerd Body Guard Advanced
Post by: perfectozzyozborne on August 12, 2013, 03:06:36 PM
i like this mod but its better if the body guards are the greasers, can u make one for me?

Of course I can!
Title: Re: Nerd Body Guard Advanced
Post by: Phap on August 12, 2013, 06:15:48 PM
You should try my Backup mod, it has all the gangs at anytime.
Title: Re: Nerd Body Guard Advanced
Post by: perfectozzyozborne on August 12, 2013, 06:40:26 PM
So you do not even have to go to the arcade?
Title: Re: Nerd Body Guard Advanced
Post by: Phap on August 12, 2013, 06:42:35 PM
So you do not even have to go to the arcade?
Nope, freeroam.
Title: Re: Nerd Body Guard Advanced
Post by: perfectozzyozborne on August 12, 2013, 06:45:08 PM
Sick dude  ;)
Title: Re: Nerd Body Guard Advanced
Post by: Unstoppable12 on August 12, 2013, 09:06:10 PM
i like this mod but its better if the body guards are the greasers, can u make one for me?

Of course I can!

thanks!
Title: Re: Nerd Body Guard Advanced
Post by: perfectozzyozborne on August 13, 2013, 07:46:35 AM
i like this mod but its better if the body guards are the greasers, can u make one for me?

Of course I can!

thanks!


I need to finish Nerd Backup V1

It's the same as NMA(Nerd Mod Advanced)
But in Free roam.
I need to try and Keybind C
if IsButtonPressed(15,0)
Im trying to use that for my back up. I do not know where to put it to start the function in free roam for STimeCycle.lur Until then, Or I could try and do it now. Since I have free time.
Title: Re: Nerd Body Guard Advanced
Post by: c00ld0c26 on August 13, 2013, 07:56:16 AM
i like this mod but its better if the body guards are the greasers, can u make one for me?

Of course I can!

thanks!


I need to finish Nerd Backup V1

It's the same as NMA(Nerd Mod Advanced)
But in Free roam.
I need to try and Keybind C
if IsButtonPressed(15,0)
Im trying to use that for my back up. I do not know where to put it to start the function in free roam for STimeCycle.lur Until then, Or I could try and do it now. Since I have free time.

In STimeCycle.lur
I recommend for anything you do to create a new function, the code is :

functionname = function()

under this code u write all the codes u want for 1 thing u want to add to free roam then use

end

until it shows u that u closed the function.

then inside

main = function()

you write this :

repeat

Wait(0)

between the repeat and the wait(0) lines you put the functions like this :

functionname()

Since u are using binds u will need the repeat and wait to make it loop and reset every time (makes it work all the time)

Here is an example :

Nerd = function()

if IsButtonBeingReleased(1,0) then                   (U can use IsButtonPressed to)
What that you want to happen here
elseif IsButtonBeingReleased (2,0) then            (If u want to bind 2 buttons then use elseif)
end                                                               (finish up with how much end lines it says u need)

then in the main function :

main = function()
repeat
Nerd()
Wait(0)
end           
Title: Re: Nerd Body Guard Advanced
Post by: perfectozzyozborne on August 13, 2013, 08:04:32 AM
i like this mod but its better if the body guards are the greasers, can u make one for me?

Of course I can!

thanks!


I need to finish Nerd Backup V1

It's the same as NMA(Nerd Mod Advanced)
But in Free roam.
I need to try and Keybind C
if IsButtonPressed(15,0)
Im trying to use that for my back up. I do not know where to put it to start the function in free roam for STimeCycle.lur Until then, Or I could try and do it now. Since I have free time.

In STimeCycle.lur
I recommend for anything you do to create a new function, the code is :

functionname = function()

under this code u write all the codes u want for 1 thing u want to add to free roam then use

end

until it shows u that u closed the function.

then inside

main = function()

you write this :

repeat

Wait(0)

between the repeat and the wait(0) lines you put the functions like this :

functionname()

Since u are using binds u will need the repeat and wait to make it loop and reset every time (makes it work all the time)

Here is an example :

Nerd = function()

if IsButtonBeingReleased(1,0) then                   (U can use IsButtonPressed to)
What that you want to happen here
elseif IsButtonBeingReleased (2,0) then            (If u want to bind 2 buttons then use elseif)
end                                                               (finish up with how much end lines it says u need)

then in the main function :

main = function()
repeat
Nerd()
Wait(0)
end           




Thanks dude you are a legend mate :)
Title: Re: Nerd Body Guard Advanced
Post by: c00ld0c26 on August 13, 2013, 08:12:11 AM
i like this mod but its better if the body guards are the greasers, can u make one for me?

Of course I can!

thanks!


I need to finish Nerd Backup V1

It's the same as NMA(Nerd Mod Advanced)
But in Free roam.
I need to try and Keybind C
if IsButtonPressed(15,0)
Im trying to use that for my back up. I do not know where to put it to start the function in free roam for STimeCycle.lur Until then, Or I could try and do it now. Since I have free time.

In STimeCycle.lur
I recommend for anything you do to create a new function, the code is :

functionname = function()

under this code u write all the codes u want for 1 thing u want to add to free roam then use

end

until it shows u that u closed the function.

then inside

main = function()

you write this :

repeat

Wait(0)

between the repeat and the wait(0) lines you put the functions like this :

functionname()

Since u are using binds u will need the repeat and wait to make it loop and reset every time (makes it work all the time)

Here is an example :

Nerd = function()

if IsButtonBeingReleased(1,0) then                   (U can use IsButtonPressed to)
What that you want to happen here
elseif IsButtonBeingReleased (2,0) then            (If u want to bind 2 buttons then use elseif)
end                                                               (finish up with how much end lines it says u need)

then in the main function :

main = function()
repeat
Nerd()
Wait(0)
end           




Thanks dude you are a legend mate :)


Psh... Im more then a legend  8)
Just kiddin, Anyway, nope, I ain't no legend, you wanna call someone a legend that would be MadmaN, Rise to Honor and Red blaster  :P
Anyway, I am glad I helped, enjoy modding!
Title: Re: Nerd Body Guard Advanced
Post by: perfectozzyozborne on August 13, 2013, 06:21:55 PM
:) Still a legend to me.
Title: Re: Nerd Body Guard Advanced
Post by: perfectozzyozborne on November 09, 2013, 07:11:38 AM
New mod coming soon
Title: Re: Nerd Body Guard Advanced
Post by: GaryHarrington on November 09, 2013, 08:32:10 AM
i like this mod but its better if the body guards are the greasers, can u make one for me?

there're mods with each clique bodyguard but i forget which section the mods were
Title: Re: Nerd Body Guard Advanced
Post by: KING DP on November 10, 2013, 12:57:26 AM
Nerds as bodyguard means life in danger
Title: Re: Nerd Body Guard Advanced
Post by: GaryHarrington on November 10, 2013, 01:52:48 AM
Nerds as bodyguard means life in danger

what do you mean?
Title: Re: Nerd Body Guard Advanced
Post by: perfectozzyozborne on November 10, 2013, 11:33:16 AM
Nerds as bodyguard means life in danger

Really. This is funny

My nerds killed all the jocks easily and they even took on the school. I tested to see in fights and the nerds kept winning so no you're live won't be in danger.
Title: Re: Nerd Body Guard Advanced
Post by: KING DP on November 18, 2013, 03:49:53 AM
they must have weapons.........they must
Title: Re: Nerd Body Guard Advanced
Post by: GaryHarrington on November 18, 2013, 05:50:23 AM
they must have weapons.........they must

yeah but they won't shoot
Title: Re: Nerd Body Guard Advanced
Post by: perfectozzyozborne on January 08, 2014, 07:40:33 PM
I could fix that.
Title: Re: Nerd Body Guard Advanced
Post by: perfectozzyozborne on March 27, 2014, 10:12:48 AM
Wow I remember this :)
Title: Re: Nerd Body Guard Advanced
Post by: perfectozzyozborne on October 21, 2014, 08:10:40 PM
^^
-old-
vv
-new-

Wow my first ever mod  :'( weird to see it again :)
Title: Re: Nerd Body Guard Advanced
Post by: Unknownsoldier on October 28, 2014, 04:56:24 PM
Nice job dude!
(http://cdn.images.express.co.uk/img/dynamic/1/590x/cancer-girl-bald-407135.jpg)
Title: Re: Nerd Body Guard Advanced
Post by: Kikymaki on January 15, 2015, 01:49:44 AM
thanks