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

Pages: 1 [2] 3 4 ... 23
16
Bully Modding Archives / Re: Bully Lua Files
« on: September 22, 2016, 12:54:19 PM »
Why don't you give a credit to madman & his friend fred teta?
I believe this is their stuffs
For what I know, madman still want to keep these scripts for some reason
And LOL, you leaked it
BTW, It's lame, how this compiled scripts, have been kept secret for such a long time (I guess, it's has been 4 years now) and only some people have the access to it
Cause this compiled scripts can be really usefull for new kids to learn script modding

17
Forum Questions/Help / Re: Yo, profile pictures!
« on: September 21, 2016, 01:51:10 PM »
What a great community we have here!

18
Modding Questions/Help Archives / Re: Loading
« on: September 20, 2016, 12:07:19 AM »
Code: [Select]
MissionSetup = function()
  AreaTransitionXYZ(0, 270, -110, 7) -- Put it right here
end

MissionCleanup = function()
end

function main()
  repeat
    Wait(0)
  until not PedIsValid(gPlayer) or PedIsDead(gPlayer)
end

19
Forum Questions/Help / Re: Yo, profile pictures!
« on: September 20, 2016, 12:02:26 AM »
I agree with this
We need a new moderator
I guess, the criteria should be like this:
-He/She is not a troll
-He/She is active on the board at least once in a week
-He/She is a veteran (has more than 1000 posts & has been in the board for at least a year)
-He/She doesn't watch MLP, pleaseee...

20
Modding Questions/Help Archives / Re: Loading screen
« on: September 14, 2016, 09:47:48 PM »
The loading screen is located in Bully: SE > TXD > lsw
You can use the nifskope software to open the nft file and export the loading screen

21
Forum Questions/Help / Re: Yo, profile pictures!
« on: September 10, 2016, 11:14:47 AM »
1. SWEGTA
He lost a bet against someone here in the board
His bet is: if he lose, he will never post anything in the board

2. AJ
He is the owner of the board
He will only show up when something terrible happens to the forum

3. Cobra
I know, he is one of the moderator
But I rarely see him, moderate the forum

The most active for the current of time is Dave & Chrissy
And BTW, it's insane, how chucky absence really affects this board
He is somehow, like the heart of the forum

22
Forum Questions/Help / Re: Yo, profile pictures!
« on: September 10, 2016, 12:48:36 AM »
BTW, just a little info
This is the mods & admins last active date
1. Chrissy (Last Active: August 06, 2016)
2. Dave (Last Active: July 07, 2016)
3. MadmaN (Last Active: July 12, 2016)
I guess, the issue about the forum is dying, it's true somehow
Cause one of the symptoms of a dying forum is the absence of mods & admins



23
Use the HxD software and edit your ide.img
-Change the "bully" faction into "jock"
-Change his unique freeroam status so he can spawn


Btw, here is the edited ide.img, it will spawn Bob as jocks
http://www.filedropper.com/bob_2

24
Introduce Yourself / Re: Bully Storyline REWRITTEN Part I
« on: September 07, 2016, 11:26:31 PM »
Bully is indeed, a little bit too rushed
It would be great if there are some missions for the Non-Clique
The plot & mission for the bullies & townies is rather lacking too

26
Bully 1 Questions / Re: final mission save
« on: August 27, 2016, 11:52:27 AM »
What do you mean?
This one?
http://www.youtube.com/watch?v=wm1knLsPP4I
It is beta stuff, and you can only trigger that through modding

27
LUA Scripting Help / Re: Help with PedIsInAreaXYZ
« on: August 21, 2016, 10:49:33 AM »
'Blip' part explanation:
0 = no blip
1 = blip (yellow)
2 = arrow (blue)
and so on
You can try it yourself, just change the blip number
BTW this PedIsInAreaXYZ(ped, X, Y, Z, Radius, Blip) code, work pretty unique, if you reach the designated area, the blip will be automatically deleted
so you don't need an extra code to delete the blip

But, if you want to create your own blip & delete it, you can use this code
BlipAddXYZ & BlipRemove
for more information read this thread:
http://bully-board.com/index.php?topic=22886.0

28
LUA Scripting Help / Re: Help with PedIsInAreaXYZ
« on: August 21, 2016, 01:13:38 AM »
Code: [Select]
MissionSetup = function()
PlayerSetHealth(200)
AreaTransitionXYZ(0,270, -110, 7)
Gary = PedCreateXYZ(130,275, -110, 7)
end

MissionCleanup = function()
end

function main()
Mission1()

repeat

Wait(0)
until not PedIsValid(gPlayer) or PedIsDead(gPlayer)
end


Mission1 = function()
repeat
Wait(0)
until PedIsInAreaXYZ(gPlayer, 275, -110, 7, 1, 1)
TextPrintString("Gary: Marry Me, Jimmy!!!", 3, 2)
PedAttackPlayer(Gary,3)
PedSetPedToTypeAttitude(Gary,13,0)
end

Your mistakes:
  • You used wait(0) (lowercase w), the correct one is Wait(0) (uppercase W)
    Lua is extremely sensitive with lowercase & uppercase
  • You missed some part of this PedIsInAreaXYZ code
    PedIsInAreaXYZ(ped, X, Y, Z, Radius, Blip)
    eg. PedIsInAreaXYZ(gPlayer, 275, -110, 7, 1, 1)

29
Video Stories / Re: Bully: SE - Stupid & Awesome Bugs/Glitches
« on: August 16, 2016, 04:10:46 AM »
Bully is indeed, a really poor pc port
I have encountered so many bugs when I played it again last month
Including random shaking/twerking peds, random game crashes, etc

30
Video Stories / Bully: SE - Stupid & Awesome Bugs/Glitches
« on: August 15, 2016, 06:29:39 AM »
Here are some stupid & awesome bugs/glitches, that I found by accident:

1. Bully: SE - A Ticket To Heaven (Remake)
[Bugs] Bully: SE - A Ticket To Heaven

2. Bully: SE - The Ghost Rider
[Bugs] Bully: SE - The Ghost Rider

3. Bully: SE - Stuck On The Street Light
[Bugs] Bully: SE - Stuck On The Street Light

Enjoy!

Pages: 1 [2] 3 4 ... 23