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


Author Topic: Cant be busted  (Read 1901 times)

0 Members and 1 Guest are viewing this topic.

Offline Enderman

  • What i'm doing right now?
  • Full Member
  • ***
  • Posts: 293
  • Gender: Male
  • I'm no longer do mods for Bully ...
    • View Profile
    • bully-board.com
Cant be busted
« on: November 22, 2014, 11:38:12 AM »
When i play Bully SE i all way busted by the cops
Does anyone know how to push back like Bif (you cant grab him)  :laugh:

Offline 明日香

  • Full Member
  • ***
  • Posts: 403
  • Gender: Female
    • View Profile
Re: Cant be busted
« Reply #1 on: November 22, 2014, 11:54:30 AM »
There's a node for it

Offline AlphaTech

  • LostInSpace
  • Sr. Member
  • ***
  • Posts: 758
  • Gender: Male
  • The name's AlphaTECH, whatca need help with?! :)
    • View Profile
Re: Cant be busted
« Reply #2 on: November 22, 2014, 01:20:25 PM »
Just set the trouble meter to disable the patrol paths around the school and other places. Also you can disable the punishment system.
DisablePunishmentSystem(true)(Disables the punishment system.)
 AreaDisableAllPatrolPaths(true)(Disables the patrol paths like cops and prefects.)
PlayerSetPunishmentPoints(Sets the punishment points, the trouble meter control basically.)
DisablePunishmentSystem(false)(Enables the punishment system.)

Offline Unknownsoldier

  • Hero Member
  • ****
  • Posts: 2,773
    • View Profile
Re: Cant be busted
« Reply #3 on: November 22, 2014, 09:15:49 PM »
Just put this under a repeat/while loop:

  if PedGetFaction(PedGetGrappleTargetPed(gPlayer)) == 0 or PedGetFaction(PedGetGrappleTargetPed(gPlayer)) == 7 or PedGetFaction(PedGetGrappleTargetPed(gPlayer)) == 8 or PedGetFaction(PedGetGrappleTargetPed(gPlayer)) == 9 or PedGetFaction(PedGetGrappleTargetPed(gPlayer)) == 10 then
    PedSetActionTree(PedGetGrappleTargetPed(gPlayer), "/Global/GS_Male_A", "Act/Anim/GS_Male_A.act")
   PedSetActionNode(PedGetGrappleTargetPed(gPlayer), "/Global/1_02/ShortIdle", "Act/Conv/1_02.act")
   PedSetActionNode(gPlayer, "/Global/1_02/ShortIdle", "Act/Conv/1_02.act")
   PedSetFaction(PedGetGrappleTargetPed(gPlayer),6)
   Wait(1)
   PedSetActionNode(gPlayer,"/Global/Player","Act/Player.act")

This will push away the authority figure.
« Last Edit: November 23, 2014, 11:57:54 PM by Unkn0wnsoldier-|AB| »

Offline SWEGTA

  • Da Forum Luffs Me!
  • *****
  • Posts: 6,423
  • Gender: Male
  • Swee Gee Tee Ayy
    • View Profile
    • Bully & GTA videos
Re: Cant be busted
« Reply #4 on: November 23, 2014, 06:39:20 AM »
^That's pretty impressive!

Offline Unknownsoldier

  • Hero Member
  • ****
  • Posts: 2,773
    • View Profile
Re: Cant be busted
« Reply #5 on: November 24, 2014, 12:01:27 AM »
^thx

Or if you simply want to limit the meter, it's self explanitory:

Code: [Select]
  if PlayerGetPunishmentPoints() > 200 then -- Change 200 to any limit you want.
    PlayerSetPunishmentPoints(200) -- You can also change 200 to any number you want.
  end

These are just a few things I keep in my personal notes hehe

The one used in this example just keeps it from getting red.
« Last Edit: November 24, 2014, 12:03:03 AM by Unkn0wnsoldier-|AB| »