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 - Bellic19

Pages: 1 ... 6 7 [8] 9 10 ... 19
106
Bully 1 Discussion / Re: Bully's Ingame Story
« on: March 08, 2016, 03:25:17 PM »
Bully's story was OK. It did have a lot of loopholes and a rushed ending, but still, i like it

107
Modding Section Rules / Re: Modder Languages
« on: March 08, 2016, 01:18:02 PM »
I don't understand what you just said

108
Modding Section Rules / Re: Modder Languages
« on: March 08, 2016, 01:08:16 PM »
The only other language I speak is auld scots and nobody speaks that anymore

109
Mod Showroom / Re: Bully Scholarship Edition : New Characters
« on: March 08, 2016, 11:15:46 AM »
Nice. Is that created from Ricky? You should keep going with this. It looks nice

110
Bully Modding Archives / Could bully MP help community?
« on: March 08, 2016, 10:55:02 AM »
I apologise if this is in the wrong section as i didn't kno where to put it

Now, first of, I'm not saying the community is dead, far from it. What I AM saying tho is that when bully MP comes out, which I trust it will before too long, could it bring back old members and stuff? I feel that, even tho I would love bully 2, it probably won't happen after so many years. We were all hoping that this forum and the entire bully community would flourish and get back to the way it was after the first game was just released. But do you think that bully MP could do this? It would allow us all to play this game we all love together. There could even be a BB server. So do you think that bully MP will do this?

111
Suggestions & Feedback / Re: All Quiet On The B-B Front
« on: March 08, 2016, 10:27:14 AM »
Same

112
Suggestions & Feedback / Re: All Quiet On The B-B Front
« on: March 08, 2016, 10:10:22 AM »
Are u ded?

113
Modding Questions/Help Archives / Re: is this possible?
« on: March 07, 2016, 03:20:58 AM »
if you have the decompiled scripts you could check the one used for "Panty Raid" to have Ms Peabody kick you out. If you used part of that script you could do it

114
Suggestions & Feedback / Re: All Quiet On The B-B Front
« on: March 06, 2016, 05:46:32 PM »
I fking hate burgers. They taste like shit in a bun

115
Modding Questions/Help Archives / Re: Stuck on Winter
« on: March 05, 2016, 02:01:05 PM »
^watch it.  :-\

116
Modding Questions/Help Archives / Re: Stuck on Winter
« on: March 05, 2016, 01:12:55 PM »
The save file maybe? If you saved it in winter it'd probably stay winter

117
Bully 1 Questions / Re: What are the religions in Bully?
« on: March 05, 2016, 01:08:53 PM »
Not sure. Don't think the game mentions religions at all tbh.

118
Modding Questions/Help Archives / Re: Xbox 360 Controller on PC
« on: March 05, 2016, 10:25:03 AM »
It should be really easy, unless your computers shit and it all needs done manually. So you get your wired controller(wireless ones don't work unless you go out and buy an adaptor for it. If its wireless you need to put the wire in the USB port BEFORE you go on bully.then go on bully, go to story, click esc. (Or whatever you use to go to pause menu),go to controls, go right to XBOX Compatibility select the bit that says "disabled" and switch to "enabled"

119
alittle more info please. is it appearing then disappearing or is it constant?

120
You haven't included a font size and shit. Try this instead

Code: [Select]
ImportScript("\\Library\\LibTable.lua") -- imports the LibTable library
ImportScript("\\Library\\LibPed.lua") -- imports the LibPed library
local l_0_0 = false
 
MissionSetup = function() -- basic mission setup function which is used in almost all bully scripts
  local l_1_0 = 270 -- X coords
  local l_1_1 = -110 -- Y coords
  local l_1_2 = 6.4000000953674 -- Z coords
  local Algernon = Nil -- Initialize bullied char
  local Damon = Nil -- Initialize bully
 
  DisablePunishmentSystem(true) -- Necessary to keep the prefects from interfering
  PlayerSetHealth(200) -- gives the player 200 health
  AreaTransitionXYZ(0, l_1_0, l_1_1, l_1_2) -- Moves player to outside boys' dorm
  TextPrintString("Algernon is one of the geeks at school. He needs protection from Damon, the jock who has been bullying him.", 4, 1) -- Posts red text on screen
  Algernon = PedCreateXYZ(4,265,-110,6.4000000953674) -- Spawn bully target
  Damon = PedCreateXYZ(12,262,-110,6.4000000953674) -- Spawn bully
  PedRecruitAlly(Algernon,gplayer) -- Second character assigned to bodyguard first
  PedAttack(Damon, Algernon, 1) -- Bully attacks target
  PedShowHealthBar(Algernon, true, "N_Algernon", true) -- Display Algernon's health bar
end

MissionCleanup = function()
end -- end statement
 
 F_MissionCheck = function()
 if PedIsDead(Damon) then
  TextPrintString("Congratulations! Algernon is safe for now thanks to your intervention.", 4, 1)
   Wait(5000)
  end
  end
 
main = function() -- Main mission function
  repeat
  F_MissionCheck()
  Wait(2000)
  until not Alive
  end

That should work. Welcome to the board BTW!

Pages: 1 ... 6 7 [8] 9 10 ... 19