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

Pages: 1 2 [3] 4
31
.IMG Archive questions/help / Re: How to edit money in HxD
« on: April 02, 2016, 07:22:43 AM »
OK, I'll not take any chances on that one then, I did it with cheat engine anyway which is really nice.

32
LUA Scripting Help / Re: LuaC compiling error
« on: April 01, 2016, 08:54:23 PM »
Sure, I'll post it here, it's DaBOSS' tutorial script:

-- Weapon Selector
local weaponSelect = 1

MissionSetup = function()
  AreaTransitionXYZ(0,270,-110,6)
  F_SetupWeapons()
end

function MissionCleanup()
 
end

function F_SetupWeapons()
  weapons = {
    {name = "Apple",model = 310}
    {name = "Banana",model = 358}
    {name = "Baseball",model = 302}
    {name = "Basket Ball",model = 381}
    {name = "Bat",model = 300}
    {name = "Big Firework",model = 397}
    {name = "Books 1",model = 405}
    {name = "Books 2",model = 413}
    {name = "Books 3",model = 414}
    {name = "Books 4",model = 415}
    {name = "Books 5",model = 416}
    {name = "Brick",model = 311}
    {name = "Broom",model = 377}
    {name = "Camera",model = 426}
    {name = "Dead Rat",model = 346}
    {name = "Devil Fork",model = 409}
    {name = "Dish",model = 338}
    {name = "Egg",model = 312}
    {name = "Fire Extinguisher",model = 326}
    {name = "Firework",model = 301}
    {name = "Flowers",model = 359}
    {name = "Football",model = 331}
    {name = "Football (Bomb)",model = 400}
    {name = "Frisbee",model = 335}
    {name = "Gold Pipe",model = 418}
    {name = "Itchy Powder",model = 394}
    {name = "Kick Me",model = 372}
    {name = "Lunch Tray",model = 348}
    {name = "Marbles",model = 349}
    {name = "News Roll",model = 320}
    {name = "Pinky Wand",model = 410}
    {name = "Plate",model = 355}
    {name = "Poison Gun",model = 395}
    {name = "Rocket Launcher",model = 307}
    {name = "Rubber Band",model = 325}
    {name = "Shield",model = 387}
    {name = "Metal Plate",model = 360}
    {name = "Skateboard",model = 437}
    {name = "Sledge Hammer",model = 324}
    {name = "Slingshot",model = 303}
    {name = "Snowball",model = 313}
    {name = "Snowball 2",model = 330}
    {name = "Soccer Ball",model = 329}
    {name = "Spray Can",model = 321}
    {name = "Spud Gun",model = 305}
    {name = "Stink Bomb",model = 309}
    {name = "Super Slingshot",model = 306}
    {name = "Super Spud Gun",model = 396}
    {name = "Trash Lid",model = 315}
    {name = "Trophy",model = 385}
    {name = "Umbrella",model = 404}
    {name = "Vase 1",model = 354}
    {name = "Vase 2",model = 353}
    {name = "Vase 3",model = 345}
    {name = "Water Baloon",model = 383}
    {name = "Water Pipe",model = 342}
    {name = "Whip",model = 411}
    {name = "Wood Paddle",model = 357}
    {name = "Wood Plank",model = 323}
    {name = "Yardstick",model = 299}
  }
end

function main()
  repeat
    F_WeaponSelect()
 Wait(0)
  until not Alive
end

F_WeaponSelect = function()
  if IsButtonBeingPressed(0,0) and weaponSelect > 1 then
    weaponSelect = weaponSelect - 1
  elseif IsButtonBeingPressed(1,0) and weaponSelect < table.getn(weapons) then
    weaponSelect = weaponSelect + 1
  elseif IsButtonBeingPressed(3,0) then
    PedSetWeapon(gPlayer,weapons[weaponSelect].model,50)
  end
  TextPrintString("Weapon Selector\n\nWeapon: "..weapons[weaponSelect].name,1,1)
end

33
LUA Scripting Help / LuaC compiling error
« on: April 01, 2016, 07:50:15 PM »
When I try to compile a script using LuaC it brings this up:

WeaponSelector.lua:16: `}' expected (to close `{' at line 14) near `{'

What have I done wrong?

34
.IMG Archive questions/help / Re: How to edit money in HxD
« on: April 01, 2016, 05:53:53 PM »
Damn, is there any trainers with an option to add money?

35
.IMG Archive questions/help / How to edit money in HxD
« on: April 01, 2016, 05:04:37 PM »
What file do I edit and what do I look for in that file to change my money, thanks

36
Bully 1 Discussion / Re: "The Rumble" mission bug!
« on: April 01, 2016, 02:47:20 PM »
Wut?

37
Bully 1 Discussion / Re: "The Rumble" mission bug!
« on: April 01, 2016, 02:30:45 PM »
Woah, I wasn't talking shit, I was just saying.

38
Bully 1 Discussion / Re: MASCOT > IS HE A JOCK
« on: March 31, 2016, 10:53:00 PM »
Hmmm, I'm not sure because in the mission where you steal the mascot outfit the Jocks protect the Mascot but they also take the hand out of him in the mission where you have to do the dance, they also call you names in that mission for some reason.

39
Haha, nice, everyone loves a good ol' brawl :P

40
Bully 1 Discussion / "The Rumble" mission bug!
« on: March 31, 2016, 09:29:33 PM »
After I defeat the greasers in the alley, when the police show up and Jimmy runs to the other alley nothing happens after that for me and Jimmy and the police just stand there doing nothing, if anybody has a fix for this can you please get back to me ASAP, thanks.

Edit: Nevermind, I found out that you need to uninstall Super Mod if you have it, god dammit DaBOSS :P

41
Thank you

42
Suggestions & Feedback / Re: How did you find Bully-Board.com?
« on: March 31, 2016, 05:17:47 PM »
I found it through SWEGTA's videos :D

43
I am playing Bully with a Ps4 controller and playing the shop classes can get really agitating when I see the X button and I press the X button on the PLAYSTATION controller, so if anybody has ps2 icons for download and can tell me how to install them I would be very appreciative, thanks.

44
Thanks, I'd love to start scripting for Bully, I've edited him in the the game with HxD so far, but that's it lol.

Edit: I've figured out all by myself how to change Bob into a Jock :D #PROUD

45
I noticed when I spawned Bob in the game, when I attacked him it played the "Bullies" Clique music and I'm wondering if anybody knows how to turn him to the jocks side. I'm also wondering how to  make anybody in the game recruitable like how you can recruit Russell for example if you're friends with him and you can pay him to protect you, Thanks

Pages: 1 2 [3] 4