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.

Topics - Shrimp

Pages: [1] 2
1
TUTORIALS / Changing PED Factions
« on: September 30, 2016, 10:47:52 PM »
I'll show and explain how you can change other ped faction's!

Now, everyone may think this is just easy ide modding.
But the bitch thing is that there's more or less letter's in the faction word.
e;g Bully and Nerd
5 Letter's in Bully, 4 in Nerd.
You can say, "How the hell can I change a bully to a nerd, there's a extra y at the end!"
Easy peasy.
I alway's wanted to get Zoe to be a Bully, (Her End-game outfit)

It's like editing char's to spawn them in freeroam.

Now let's say you want Zoe to be a bully.
Zoe is a Dropout (game files).
Now, just type replace it with the word Bully
You'll have Bullyut. ez fix!
Just add a dot.
Or you can go to the left hand-side panel, then change the "ut" to a dot (.)

And that's it, Zoe should be a bully.
If the character's in the word of the faction is the same character's, e;g Nerd - Jock
Then you're fine, you wouldn't need to add anything extra ect.

(getting zoe to be a bully :D)
(and leon lel)


2
Modding Questions/Help Archives / ped spawnspoints and convos
« on: September 04, 2016, 08:06:57 PM »
i always wonder how you can spawn peds in interiors and allow them to chat in groups and in two's
so far i only know how to make ped's talk in two's

basically this.
https://www.youtube.com/watch?v=AcKydWjsZtk
how did gman123 do this?
i would love to find out how
it just add's realism and feels cool tbh.

3
Modding Questions/Help Archives / questions
« on: April 15, 2016, 01:55:32 PM »
questions
1) how the hell does the jocks spawning at nerd's hideout work?
it happens when all nerds are defeated/gone out the library and the jocks are there, they spawn there and talk till nerds re-spawn
how the fuck does that work and can it be done on other hideout's? eg preps taking over greaser's?
2) how 2 make other peds/factions scared of you
e;g if am russell, pretty much all factions are scared, i dont think bif is tho. i don't mean the ped's spawn.
3) how to make ped's on bikes attack u like in the mission where you lure gord and the 2 others into the bmx park and then shit goes down on the bike's with egg's n firecrackers
4) how to make a faction make base at another faction's hideout
like the jocks at the library spawning there, conversation n shit
5) does anyone know how to work the autoshop gate's like in the setup, i only managed to close/lock one.

4
TUTORIALS / Function's / Mission scripting tutorial
« on: April 08, 2016, 02:12:46 PM »
FUNCTIONS
MISSION SCRIPTING
BY SHRIMP :)


Welcome to my lovely tutorial, where I'll show you the all the function's that I know and what they do. There's around 1000 function's in Bully, which I obviously don't know all of them.
I'll also show a basic mission script, with a nice small description about what is occurring in the function's.

Function's/Commands:
AreaTransitionXYZ(AreaCode, X, Y, Z)
Teleport's the players along with allies/enemies to that position.


AddBlipForChar(Ped, 0, Blip, Visibility)
This add's a blip to a Ped you desire. Blips below. (Credit's would go to Deadpool and Unknown for the thread). http://www.bully-board.com/index.php?topic=22886.0

AddBlipForCar(Vehicle, Blip, Visibility) This is the same as above.

BlipAddXYZ(X, Y, Z, Blip) This create's a Blip, the list for blip icon's is provided below.
http://www.bully-board.com/index.php?topic=22886.0


BlipRemove(Blip) Delete's a blip.

CameraSetXYZ(X, Y, Z) This is cool for mission's, it set's a position for a camera.

CameraLookAtXYZ(X, Y, Z) This make's the camera look at a certain direction, like PedFaceXYZ.

ClockSet(Hour, Minute) Set the clock's time, e;g ClockSet(8, 00)

DisablePunishmentSystem(true/false) Disable or enable the Punishment system.

GameSetPedStat(Ped, Stat, NewValue) This change's the stat of a ped to something different, you want.

TextPrintString("Text.", 4, 1) This display's text, you need to put a Wait() under it. Inside the () of the wait, put a thousand digit number, 1000 is a second, 1500 is a second and half. Number 1 display's it at the top, and number two display's it at the bottom.

PedAttack(Ped, Ped, value) This make's a ped attack another ped. Values: 1 = If the Ped is being attacked by another ped, then the ped who got attacked will attack the ped who hit him. 2 = If the ped got hit by someone else, he will ignore it and still attack the Ped he's ment to. 3 = I don't know, I think there is a three, though. NOTE : I think 2 may be 3.

PedAttackPlayer(Ped) This is kinda better then PedAttack if you want the ped to attack the player. This makes a ped attack the player.

PedCreateXYZ(Ped, X, Y, Z) Create's a ped at the XYZ coord's.
Now, you do something like,
Russell = PedCreateXYZ(). This is useful and if am right, needed for stuff like GameSetPedStat, or AddBlipForChar(). List of ped ID's below.


PedSetHealth(Ped, healthNumber) Set the HP of a ped.

Code: [Select]
-------------------------------------------
|   ID   |    MODEL NAME    | Outfit Type |
|--------|--------------------------------|
|        |                  |             |
|0    | Jimmy           |   Normal    |
-------------------------------------------
|1    | Jimmy           | Default Ped |
-------------------------------------------
|2    | Zoe             |             |
-------------------------------------------
|3    | Beatrice        |             |
-------------------------------------------
|4    | Algernon        |             |
-------------------------------------------
|5    | Fatty           |             |
-------------------------------------------
|6    | Melvin          |             |
-------------------------------------------
|7    | Thad            |             |
-------------------------------------------
|8    | Bucky           |             |
-------------------------------------------
|9    | Cornelius       |             |
-------------------------------------------
|10   | Earnest         |             |
-------------------------------------------
|11   | Donald          |             |
-------------------------------------------
|12   | Damon           |             |
-------------------------------------------
|13   | Kirby           |             |
-------------------------------------------
|14   | Mandy           |             |
-------------------------------------------
|15   | Dan             |             |
-------------------------------------------
|16   | Luis            |             |
-------------------------------------------
|17   | Casey           |             |
-------------------------------------------
|18   | Bo              |             |
-------------------------------------------
|19   | Ted             |             |
-------------------------------------------
|20   | Juri            |             |
-------------------------------------------
|21   | Peanut          |             |
-------------------------------------------
|22   | Hal             |             |
-------------------------------------------
|23   | Johnny          |             |
-------------------------------------------
|24   | Lefty           |             |
-------------------------------------------
|25   | Lola            |             |
-------------------------------------------
|26   | Lucky           |             |
-------------------------------------------
|27   | Vance           |             |
-------------------------------------------
|28   | Ricky           |             |
-------------------------------------------
|29   | Norton          |             |
-------------------------------------------
|30   | Gord            |             |
-------------------------------------------
|31   | Tad             |             |
-------------------------------------------
|32   | Chad            |             |
-------------------------------------------
|33   | Bif             |             |
-------------------------------------------
|34   | Justin          |             |
-------------------------------------------
|35   | Bryce           |             |
-------------------------------------------
|36   | Bryce           |             |
-------------------------------------------
|37   | Darby           |             |
-------------------------------------------
|38   | Pinky           |             |
-------------------------------------------
|39   | Angie           |             |
-------------------------------------------
|40   | Parker          |             |
-------------------------------------------
|41   | Jerry           |             |
-------------------------------------------
|42   | Otto            |             |
-------------------------------------------
|43   | Leon            |             |
-------------------------------------------
|44   | Duncan          |             |
-------------------------------------------
|45   | Henry           |             |
-------------------------------------------
|46   | Gurney          |             |
-------------------------------------------
|47   | Omar            |             |
-------------------------------------------
|48   | Zoe             |             |
-------------------------------------------
|49   | Max             |             |
-------------------------------------------
|50   | Seth            |             |
-------------------------------------------
|51   | Edward          |             |
-------------------------------------------
|52   | Karl            |             |
-------------------------------------------
|53   | Theo            |             |
-------------------------------------------
|54   | MissPeabody     |             |
-------------------------------------------
|55   | MrBurton        |             |
-------------------------------------------
|56   | MrLuntz         |             |
-------------------------------------------
|57   | MrGalloway      |             |
-------------------------------------------
|58   | Edna            |             |
-------------------------------------------
|59   | MissWinston     |             |
-------------------------------------------
|60   | MrsMcRae        |             |
-------------------------------------------
|61   | MrHuntingdon    |             |
-------------------------------------------
|62   | MrsCarvin       |             |
-------------------------------------------
|63   | MsPhillips      |             |
-------------------------------------------
|64   | MrSlawter       |             |
-------------------------------------------
|65   | DrCrabblesnitch |             |
-------------------------------------------
|66   | Sheldon         |             |
-------------------------------------------
|67   | Christy         |             |
-------------------------------------------
|68   | Gloria          |             |
-------------------------------------------
|69   | Pedro           |             |
-------------------------------------------
|70   | Constantinos    |             |
-------------------------------------------
|71   | Ray             |             |
-------------------------------------------
|72   | Ivan            |             |
-------------------------------------------
|73   | Trevor          |             |
-------------------------------------------
|74   | Eunice          |             |
-------------------------------------------
|75   | Russell         |             |
-------------------------------------------
|76   | DrBambillo      |             |
-------------------------------------------
|77   | MrSullivan      |             |
-------------------------------------------
|78   | MsKopke         |             |
-------------------------------------------
|79   | MsRushinski     |             |
-------------------------------------------
|80   | MsIsaacs        |             |
-------------------------------------------
|81   | BethanyJones    |             |
-------------------------------------------
|82   | ORourke         |             |
-------------------------------------------
|83   | OfficerMonson   |             |
-------------------------------------------
|84   | ZackOwens       |             |
-------------------------------------------
|85   | Trent           |             |
-------------------------------------------
|86   | TobiasMason     |             |
-------------------------------------------
|87   | MrGrant         |             |
-------------------------------------------
|88   | Mascot          |             |
-------------------------------------------
|89   | MrOh            |             |
-------------------------------------------
|90   | Christy         |             |
-------------------------------------------
|91   | Edgar           |             |
-------------------------------------------
|92   | Luis            |    Wrestling |
-------------------------------------------
|93   | Mandy           |             |
-------------------------------------------
|94   | Pinky           |             |
-------------------------------------------
|95   | Beatrice        |             |
-------------------------------------------
|96   | Lola            |             |
-------------------------------------------
|97      | OfficerWilliams |             |
-------------------------------------------
|98      | Jimmy           |  Wrestling  |
-------------------------------------------
|99      | Davis           |             |
-------------------------------------------
|100  | MrBreckindale   |             |
-------------------------------------------
|101  | MrDoolin        |             |
-------------------------------------------
|102  | Troy            |             |
-------------------------------------------
|103  | Nate            |             |
-------------------------------------------
|104  | MrCarmichael    |             |
-------------------------------------------
|105  | NickyCharles    |             |
-------------------------------------------
|106  | MrWatts         |             |
-------------------------------------------
|107  | MissAbby        |             |
-------------------------------------------
|108  | Mihailovich     |             |
-------------------------------------------
|109  | Kirby           |        Football outfit     |
-------------------------------------------
|110  | Ted             |      Football outfit       |
-------------------------------------------
|111  | Dan             |      Football outfit       |
-------------------------------------------
|112  | Damon           |      Football outfit       |
-------------------------------------------
|113  | Freeley         |             |
-------------------------------------------
|114  | Dorsey          |             |
-------------------------------------------
|115  | Hector          |             |
-------------------------------------------
|116  | Osbourne        |             |
-------------------------------------------
|117  | Chad            |             |
-------------------------------------------
|118  | Justin          |             |
-------------------------------------------
|119  | Parker          |             |
-------------------------------------------
|120  | MariaTheresa    |             |
-------------------------------------------
|121  | Bob             |             |
-------------------------------------------
|122  | Fatty           |             |
-------------------------------------------
|123  | Chuck           |             |
-------------------------------------------
|124  | Ian             |             |
-------------------------------------------
|125  | Fenwick         |             |
-------------------------------------------
|126  | Neil            |             |
-------------------------------------------
|127  | MrSvenson       |             |
-------------------------------------------
|128  | Denny           |             |
-------------------------------------------
|129  | MrGalloway      |             |
-------------------------------------------
|130  | Gary            |             |
-------------------------------------------
|131  | Krakauer        |             |
-------------------------------------------
|132  | MrMoratti       |             |
-------------------------------------------
|133  | Bif             |             |
-------------------------------------------
|134  | Peter           |             |
-------------------------------------------
|135  | MrSmith         |             |
-------------------------------------------
|136  | Rat             |             |
-------------------------------------------
|137  | Melody          |             |
-------------------------------------------
|138  | Karen           |             |
-------------------------------------------
|139  | Gordon          |             |
-------------------------------------------
|140  | Brandy          |             |
-------------------------------------------
|141  | Pitbull         |             |
-------------------------------------------
|142  | Lance           |             |
-------------------------------------------
|143  | Crystal         |             |
-------------------------------------------
|144  | MrMartin        |             |
-------------------------------------------
|145  | Ethan           |             |
-------------------------------------------
|146  | Wade            |             |
-------------------------------------------
|147  | Tom             |             |
-------------------------------------------
|148  | MrRamirez       |             |
-------------------------------------------
|149  | MrHuntingdon    |             |
-------------------------------------------
|150  | Otto            |             |
-------------------------------------------
|151  | MrWiggins       |             |
-------------------------------------------
|152  | Floyd           |             |
-------------------------------------------
|153  | Leon            |             |
-------------------------------------------
|154  | Henry           |             |
-------------------------------------------
|155  | Fatty           |             |
-------------------------------------------
|156  | Stan            |             |
-------------------------------------------
|157  | Handy           |             |
-------------------------------------------
|158  | Gregory         |             |
-------------------------------------------
|159  | Pedro           |             |
-------------------------------------------
|160  | Gary            |             |
-------------------------------------------
|161  | Lucky           |             |
-------------------------------------------
|162  | Donald          |             |
-------------------------------------------
|163  | Parker          |             |
-------------------------------------------
|164  | Casey           |             |
-------------------------------------------
|165  | Peter           |             |
-------------------------------------------
|166  | Angie           |             |
-------------------------------------------
|167  | Pinky           |             |
-------------------------------------------
|168  | Damon           |             |
-------------------------------------------
|169  | Gordon          |             |
-------------------------------------------
|170  | Ivan            |             |
-------------------------------------------
|171  | Trevor          |             |
-------------------------------------------
|172  | Bif             |             |
-------------------------------------------
|173  | Vance           |             |
-------------------------------------------
|174  | Thad            |             |
-------------------------------------------
|175  | Pinky           |             |
-------------------------------------------
|176  | Russell         |             |
-------------------------------------------
|177  | Tad             |       Cut model      |
-------------------------------------------
|178  | Bryce           |     Cut model        |
-------------------------------------------
|179  | Justin          |      Cut model       |
-------------------------------------------
|180  | Angie           |             |
-------------------------------------------
|181  | Christy         |             |
-------------------------------------------
|182  | Pinky           |             |
-------------------------------------------
|183  | MrBuba          |             |
-------------------------------------------
|184  | MrGordon        |             |
-------------------------------------------
|185  | MrsLisburn      |             |
-------------------------------------------
|186  | Fatty           |             |
-------------------------------------------
|187  | Betty           |             |
-------------------------------------------
|188  | Lightning       |             |
-------------------------------------------
|189  | Zeke            |             |
-------------------------------------------
|190  | Alfred          |             |
-------------------------------------------
|191  | Paris           |             |
-------------------------------------------
|192  | Courtney        |             |
-------------------------------------------
|193  | Delilah         |             |
-------------------------------------------
|194  | Drew            |             |
-------------------------------------------
|195  | Castillo        |             |
-------------------------------------------
|196  | Edgar           |     Gym        |
-------------------------------------------
|197  | Gurney          |       Gym      |
-------------------------------------------
|198  | Jerry           |     Gym        |
-------------------------------------------
|199  | Leon            |      Gym       |
-------------------------------------------
|200  | Hal             |       Gym      |
-------------------------------------------
|201  | Norton          |       Gym      |
-------------------------------------------
|202  | Peanut          |      Gym       |
-------------------------------------------
|203  | Vance           |      Gym      |
-------------------------------------------
|204  | Bo              |      Gym       |
-------------------------------------------
|205  | Damon           |       Gym      |
-------------------------------------------
|206  | Juri            |      Gym       |
-------------------------------------------
|207  | Kirby           |       Gym      |
-------------------------------------------
|208  | Algernon        |      Gym       |
-------------------------------------------
|209  | Bucky           |      Gym       |
-------------------------------------------
|210  | Thad            |       Gym      |
-------------------------------------------
|211  | Parker          |      Gym       |
-------------------------------------------
|212  | Justin          |       Gym      |
-------------------------------------------
|213  | Tad             |      Gym       |
-------------------------------------------
|214  | Gord            |       Gym      |
-------------------------------------------
|215  | Earnest         |      End-Game model       |
-------------------------------------------
|216  | Ted             |       End-Game model      |
-------------------------------------------
|217  | Johnny          |      End-Game model       |
-------------------------------------------
|218  | Darby           |       End-Game model      |
-------------------------------------------
|219  | Pitbull         |             |
-------------------------------------------
|220  | Pitbull         |             |
-------------------------------------------
|221  | Edna            |             |
-------------------------------------------
|222  | McInnis         |             |
-------------------------------------------
|223  | Johnson         |             |
-------------------------------------------
|224  | Thad            |             |
-------------------------------------------
|225  | Sheldon         |             |
-------------------------------------------
|226  | Pedro           |             |
-------------------------------------------
|227  | Ivan            |             |
-------------------------------------------
|228  | Trevor          |             |
-------------------------------------------
|229  | MrBurton        |             |
-------------------------------------------
|230  | Mandy           |     Towel        |
-------------------------------------------
|231  | Bo              |     Football Outfit        |
-------------------------------------------
|232  | Casey           |      Football Outfit       |
-------------------------------------------
|233  | PunchBag        |             |
-------------------------------------------
|234  | OfficerMonson   |             |
-------------------------------------------
|235  | Constantinos    |             |
-------------------------------------------
|236  | McInnis         |             |
-------------------------------------------
|237  | McInnis         |             |
-------------------------------------------
|238  | OfficerWilliams |             |
-------------------------------------------
|239  | Bryce           |   Boxing    |
-------------------------------------------
|240  | Bryce           |   Boxing    |
-------------------------------------------
|241  | Chad            |   Boxing    |
-------------------------------------------
|242  | Chad            |   Boxing    |
-------------------------------------------
|243  | Bif             |   Boxing    |
-------------------------------------------
|244  | Justin          |   Boxing    |
-------------------------------------------
|245  | Justin          |   Boxing    |
-------------------------------------------
|246  | Parker          |   Boxing    |
-------------------------------------------
|247  | Parker          |   Boxing    |
-------------------------------------------
|248  | Geography Teacher|            |
-------------------------------------------
|249  |    Music Teacher |             |
-------------------------------------------
|250  | X-Mas Elf #1    |             |
-------------------------------------------
|251  |    X-Mas Elf #2  |             |
-------------------------------------------
|252  |    Hobo Santa    |             |
-------------------------------------------
|253  |    Fake Santa    |             |
-------------------------------------------
|254  |    Fake Santa    | Unknown     |
-------------------------------------------
|255  | Peter           |  NutCracker |
-------------------------------------------
|256  | Eunice          |  Halloween  |
-------------------------------------------
|257  | Melody          |  Halloween  |
-------------------------------------------
|258  | Pedro           |  Halloween  |

PedDelete(Ped) Simply delete's a ped.

PedDismissAllAllies(Ped) Dismiss allies of a ped or gPlayer.

PedGetUniqueModelStatus(PedIndex, status) Status are = -1, never spawns, 1, Model can be seen with one copy, 2, the model has duplicate copies.

PedHasAllyFollower(Ped) True or false, if, the ped has a follower (ally).

PedHasAllyLeader(Ped) Same as above, but instead if the Ally has a leader.

PedMoveToXYZ(Ped, Speed, X, Y, Z) Move's a ped to a certain place you want. Speed: 0 = walk, 1 = Jog, 2 = Sprint.

PedOverrideStat(Ped, Stat, NewValue) Override a stat of a ped with a value you like.

PedRecruitAlly(Ped, Ped) Only a ped can have one follower, but the follower can also have a follower, so it will chain. e;g
PedRecruitAlly(gPlayer, Gary) PedRecruitAlly(Gary, Pete)

PedSetMissionCritical(Ped, true, ???, false) I don't know much, as I can tell by the name it make's a Ped Critical, and if dead, the mission simply fail's. I don't know what true and false do, I only have knowledge of Ped, I recently just found this in a decompiled script of Halloween. (It seem's like there was a function in the middle, what the hell?)

PedSetEmotionTowardsPed(Ped, Ped, Emotion) Set's a ped's emotion to the second. List below.

Code: [Select]
  -------------------------
  |0       |   AGGRESSIVE |
  -------------------------
  |1       |      ANNOYED |
  -------------------------
  |2       |   UNFRIENDLY |
  -------------------------
  |3       |   DISMISSIVE |
  -------------------------
  |4       |  VERY SCARED |
  -------------------------
  |5       |       SCARED |
  -------------------------
  |6       |  INTIMIDATED |
  -------------------------

PedWander(Ped)

PedSetInfiniteSprint(Ped, True/False) If a ped can sprint forever. This is also used if gPlayer switched model's.

PedSetPedToTypeAttitude(Ped, Faction, Attitude) Set ped's attitude toward's another faction. Don't mix this with PedSetTypeToTypeAttitude.

PedSetPosXYZ(Ped, X, Y, Z) Set the position of a ped.

PedSetTypeToTypeAttitude(Faction, Faction, Attitude) Set the first faction attitude toward's another faction. List below.
Code: [Select]
Faction/Clique        ID
_____________
Prefect | 0

--------------------
Nerd         |       1
______________
Jock         |       2
______________
DropOut/Townies     |        3
______________
Greaser      |       4
______________
Preppy       |       5
______________
Student      |       6
______________
Cop            |     7
______________
Teacher       |      8
______________
TownPerson    |      9
______________
ShopKeep      |     10
______________
Bully        |      11
______________
Player2    |        14
______________
Player      |       13
______________   

Code: [Select]
RelationshipID's

Relationship | ID
-----------------------------
Abhor(Hate)      |        0
_____________________
Averse           |        1
____________________
Dispassionate(Ignores) |  2
____________________
Dig             |         3
____________________
Adore(Is your friend) |   4
____________________

PedSetWeapon(Ped, Weapon, Ammo) Give the ped a weapon with the ammo you desire. (NOTE, DON'T INPUT ANYTHING FOR AMMO IF YOU USE MELEE WEAPON'S, SIMPLY JUST DO PED AND WEAPON.)

PlayerSetControl(Control) This disables or enable's the players control. Controls: 0 = Disabled. 1 = Enabled.

PedIsInCombat(Ped) Basically can be used like a "if PedIsInCombat()" ect, mean's if the ped is In combat. (Credit's to UltimateGamer9)

SoundPlayStream(".rsm", 0.69999998807907) This play's a Soundtrack/music. Inside the " " Put the audio track, I'll provide a list below. Make sure you put .rsm after it. The number's are the sound, higher then 3 would be really loud. There are some testing one's that may have bad quality, they sound like the Bullies. I find them very cool, though.


Code: [Select]
Arc_FlyingSquirrelGameMx01
Arc_FlyingSquirrelGameMx02
Arc_FlyingSquirrelGameMx03
Arc_MonkeyFlingGame01
Arc_MonkeyFlingGame02
Arc_MonkeyFlingGame03
Arc_SUMO_Game01
ArcRaceMXmidi02Drive01
ArcRaceMXmidi02Drive02
ArcRaceMXmidi02Drive03
MS_6B_EndlessSummerCreditsNIS
MS_ActionHigh
MS_ActionHigh_NISReturn
MS_ActionLow
MS_ActionMid
MS_ArtClass
MS_BikeActionHigh
MS_BikeActionMid
MS_BikeChaseHigh
MS_BikeChaseLow
MS_BikeChaseMid
MS_BikeDay
MS_BikeFastHigh
MS_BikeFastLow
MS_BikeFunHigh
MS_BikeFastMid
MS_BikeFunLow
MS_BikeFunMid
MS_BikePractice
MS_BikeRace01
MS_BikeRace02
MS_BiologyClass
MS_BoxingBossFight
MS_BoxingReg
MS_Candidate
MS_Carnival01
MS_Carnival02
MS_CarnivalFunhouseAmbient
MS_CarnivalFunhouseMaze
MS_CarnivalFunhouseMiner
MS_ChasePrefect
MS_ChaseHigh
MS_ChaseLow
MS_ChaseMid
MS_ChasePolice
MS_ChemistryClass
MS_DestructionVandalismHigh
MS_DestructionVandalismMid
MS_DishonorableFight
MS_EnglishClass
MS_EpicConfrantation_NIS
MS_EpicConfrontationHigh
MS_EpicConfrontationHighPart2
MS_EpicConfrontationLow
MS_EpicConfrontationMid
MS_FearTensionMid
MS_FightingBullies
MS_FightingDropouts
MS_FightingGeneric
MS_FightingGreasers
MS_FightingJocks
MS_FightingJohnnyVincentBikeRide
MS_FightingJohnnyVincentBossFight
MS_FightingJohnnyVincentFight
MS_FightingNerds
MS_FightingPreps
MS_FightingPrepsLow
MS_FinalShowdown03High
MS_FinalShowdown03Low
MS_FinalShowdown03Mid
MS_FinalShowdownHigh
MS_FinalShowdownLow
MS_FinalShowdownMid
MS_FootStealthHigh
MS_FootStealthLow
MS_FootStealthMid
MS_FriendshipAllyHigh
MS_FriendshipAllyLow
MS_FriendshipAllyMid
MS_FunHigh
MS_FunLow
MS_FunMid
MS_GeographyClass
MS_Gobble
MS_GoKart 01
MS_GoKart02
MS_GoKarts02
MS_GymClass
MS_HalloweenHigh
MS_HalloweenLow
MS_HalloweenMid
MS_InTroubleHigh
MS_InTroubleLow
MS_JockBossBattle
MS_KidsPlay
MS_LockPicking
MS_MathClass
MS_MisbehavingHigh
MS_MisbehavingHigh_NIS01
MS_MisbehavingHigh_NIS02
MS_MisbehavingHigh_NIS03
MS_MisbehavingLow
MS_MisbehavingMid
MS_MovieTixRomance
MS_MusicClass_Carols01
MS_MusicClass_Coming
MS_MusicClass_Liberty
MS_MusicClass_MasterP
MS_MusicClass_Turkey
MS_MusicClass_Washing
MS_PhotographyClass
MS_RomanceHigh
MS_RomanceLow
MS_RomanceMid
MS_RunningFight-2 MIX TR
MS_RunningHigh
MS_RunningLow
MS_RunningLow02
MS_RunningMid
MS_RussellInTheHole
MS_SearchingHigh
MS_SearchingLow
MS_SearchingMid
MS_ShopClass
MS_ShowdownAtThePlantHigh
MS_ShowdownAtThePlantLow
MS_SneakDate_Romantic
MS_SneakDate_SexyGirl
MS_Somower
MS_StealthHigh
MS_StealthLow
MS_StealthMid
MS_StealthMidA
MS_StreetFightLargeHigh_Boxing
MS_StreetFightLargeLow_Boxing
MS_StreetFightLargeMid_Boxing
MS_TenementsHigh
MS_TenementsLow
MS_TenementsMid
MS_TensionBuilder01
MS_Tired
MS_WIldstyleHigh
MS_WIldstyleLow
MS_WIldstyleMid
MS_XmasBellsRudyHigh
MS_XmasBellsRudylow
MS_XmasBellsRudyMid
MS_XmasComeRudyHigh
MS_XmasComeRudyLow
MS_XmasComeRudyMid
MS_XmasFavoriteBallsHigh
MS_XmasFavoriteBallsLow
MS_XmasFavoriteBallsMed
MS_XmasJingleMiracle
MS_XmasJingleMiracleHigh
MS_XmasJingleMiracleLow
MS_XmasJingleMiracleMid
MS_FIGHT01A
MS_FIGHT01B
MS_FIGHT01C
MS_FIGHT01D
MS_FIGHT01EEndFade
MS_FIGHT01EndFade
MS_FIGHT01F
MS_FightLow03
MS_FightMid01
MS_FightMid02
MS_FightMid03

MISSION ONES BELOW!!!
MS_3-B_ENDTAG
MS_3B_JohhnyV_NIS
MS_5-05_BurtonPee_NIS
MS_5-05_MeetZoe_NIS
MS_6B_EndlessSummerCreditsNIS
MS_1-06_HoboNIS
MS_5-05_NIS_PottyFall
MS_5-06_Garage_NIS
MS_5-06_HarleyLeavesExplode_NIS


SoundPlayAmbientSpeechEvent(Ped, Speech) Play's ambient speech on ped.

SoundPlayScriptedSpeechEvent(Ped, "Speech event", 0, "large") I don't know what large and 0 does. This plays a Scripted speech event on a Ped. Thread below of some speech event's. (Credit's to Reath)
http://www.bully-board.com/index.php?topic=20827.0

SoundStopCurrentSpeechEvent(Ped) Make's the ped shutup.

VehicleCreateXYZ(VehicleIndex, X, Y, Z) Create a vehicle. Vehicle's below. Treat this PedCreateXYZ, Name = VehicleCreateXYZ()
Code: [Select]
---------------------------
| Id  | MODEL NAME | TYPE |
---------------------------
|                         |
---------------------------
| 272 | bmxrace    | bike |
---------------------------
| 273 | retro    | bike |
---------------------------
| 274 | crapbmx    | bike |
---------------------------
| 275 | bikecop    | bike |
---------------------------
| 276 | Scooter    | bike |
---------------------------
| 277 | bike    | bike |
---------------------------
| 278 | custombike | bike |
---------------------------
| 279 | banbike    | bike |
---------------------------
| 280 | mtnbike    | bike |
---------------------------
| 281 | oladbike   | bike |
---------------------------
| 282 | racer    | bike |
---------------------------
| 283 | aquabike   | bike |
---------------------------
| 284 | Mower    | car  |
---------------------------
| 285 | Arc_3    | car  |
---------------------------
| 286 | taxicab    | car  |
---------------------------
| 287 | Arc_2    | car  |
---------------------------
| 288 | Dozer    | car  |
---------------------------
| 289 | GoCart    | car  |
---------------------------
| 290 | Limo    | car  |
---------------------------
| 291 | Dlvtruck   | car  |
---------------------------
| 292 | Foreign    | car  |
---------------------------
| 293 | cargreen   | car  |
---------------------------
| 294 | 70wagon    | car  |
---------------------------
| 295 | policecar  | car  |
---------------------------
| 296 | domestic   | car  |
---------------------------
| 297 | Truck    | car  |
---------------------------
| 298 | Arc_1    | car  |
---------------------------

VehicleDelete(Vehicle) Delete's vehicle.

VehicleSetPosXYZ(Vehicle, X, Y, Z) Direction where the vehicle would face.


MISSION SCRIPTING / TUTORIAL

So far this is all I got for function's, I will add more if I find more!
I will also start working on the mission tutorial in a few day's or in a week.
Thank's for reading!

5
Mod Releases / Jock's Betrayal. (Mission series)
« on: April 07, 2016, 09:49:22 PM »
wsup kids
I'm makin' another mission series about the Jocks, if you all can remember the Ted & Damon I had a few problem's with it and sadly I lost the lua file somehow.
This title say's it all, The Jock's betray Ted (Damon mainly), Leaving Damon in charge, and Ted trying to fight his way out.
So far I'm working on the first part, around 40% done, I'll release source for the missions after a few day's of it being fully done (Pt 1.).
As Ted fight's his way out, he gain's some help from a faction or two, or even joining one and gaining revenge.

I'll post screenshot's for it soon.
Credit's: UnknownSoldier #freemywiggaunknown



STATUS (%) = 40%
DOWNLOAD LINK / RELEASE:

6
Modding Questions/Help Archives / Ped Conversations
« on: April 05, 2016, 12:53:01 PM »
hello
As y'all notice, in bully you can see ped in certain point's talk to each other or wait for a ped to spawn to talk to.
e;g

In the Boy's dorm, if you enter and go in to the common area where the arcade machine is,
Next to the poker table and TV two ped's can start having a conversation.
Is it possible to add your own Convo area?
Let's say I want to make the Chemical plant more alive, I want to add spawn point's for Townies, I also want to find a way to make them have conversation's around it, does anyone know how to do this?

7
Bully 1 Discussion / MASCOT > IS HE A JOCK
« on: March 31, 2016, 10:26:05 PM »
IS MASCOT A JOCK
am not talking about the guy inside, the ped it-self like the model and shit
is he a JOCK
ive had this argument on youtube so much and for ages, everybody express urself

8
Mod Showroom / Bullying mod!
« on: July 25, 2015, 11:30:08 AM »
Hey guys!
While I was learning how and to use action nodes,  I was making a Bullying mod. This feature's you to play as a tough char, or not; (DEFAULT = RUSSELL).

Credits: After-life - Unknown's Tutorial for action nodes (BIG HELP :d)

Features:
Harass kicking.
Humilation (Noogies, Punch in Stomach - Depends what char.)
Conversations (Work in Progress)
Insulting other peds.
Ped's may be afraid of you (e;g Hal)
Stat's of the ped you play (e;g same health, ect ect)
and even more!

Video: (Uploading)



(Dont recommend you using it for now bit buggy, it's a preview but I'll gladly release versions with different peds) Download link: https://www.dropbox.com/s/pu40qhsvpragrwd/Bully%20SE%20Bullying%20mod%20PREVIEW.rar?dl=0

9
Mod Showroom / The Jock's mod!
« on: July 20, 2015, 06:22:22 PM »
HEEEEEEY!

I've been working on a mod with a simple title "The Jock's mod". This features you playing as Damon, with a few clique members guarding the Gym.

Features:

Ted and Luis as your body-guards (Optional)
Free-roam time.
Mission task's to do, optional. (They work from easy, to hardest)
Free-roam and Mission task's in one! kewl!
AND EVEN MOAAR!!!

Video:

www.youtube.com/watch?v=085nUVNI158

Screenshots:





Link: Once it's finished.

10
Mod Releases / Beta Jimmy re-texture.
« on: July 16, 2015, 08:15:30 PM »
So, I recently know that his beta textures are left over, I applied it to his School vest, and his jeans. (Jeans are same really, so I added a black tint) The Vest is different; a little. I'm working on his Boots and Face (Finding it's texture).

NOTE: I DONT RECOMMEND PLAYING IT UNTIL THE SHIRT IS FULLY FIXED.
VERSION: V1.0


His vest is buggy, but I'll still release a link but I don't recommend it yet.

Credits: Unknown-Soldier.  ;D

Download: https://www.dropbox.com/s/ozjig15za359kbc/Bully%20SE%20Beta%20Jimmy%20Re-texture.rar?dl=0

Ingame screenshots: (v1.0)



11
Mod Releases / Greaser's Assault (Mission)
« on: July 14, 2015, 03:30:47 PM »
hi people
I'm making another mission, called Greasers Assault.
Plan:
Greasers are taking over Bullworth Vale; and the Preps and you (Gord) Have to take over turfs; starting from Tad's house, Park's, ect.

So far this is only stage 1, meaning I completed the first part (Fighting in Tad's house) And I'll work on the rest.
Screenshots for part 1:





12
Mod Releases / Adventure's of Ted & Damon (Mission series)
« on: July 12, 2015, 02:50:50 PM »
So I'm gonna make a series of missions like a sequel. It involves Ted' and Damon; against the Nerd's.
It's gonna have around 5 missions, un-sure.
I will release a download link when each mission are done.
Credit's are to: Masterreys100, UnknownSoldier.
First ever working stable mission to.

I'll release a source someday, but I'll probably wont in-case of thieves.

First mission is in the work, nearly fully done.

Mission Name: Ted's Raid
Partner's: Damon
Objectives: Raid the observatory and chase down Earnest.

Download link: NIL

Ted's Raid - Screenshots:




____________________________________________________________________________________________________________

13
Mod Releases / Beta prep's retexture.
« on: July 11, 2015, 12:28:31 PM »
So I'm working on a re-texture to edit the Prep's into there beta or alpha outfit, image's below





V1.0, It includes so far Bryce, Bif, and Tad.

VV link.

https://www.dropbox.com/s/5e5a55btlmjtdtv/Bully%20SE%20Prep%27s%20Beta%20outfits%20%28texture%20%231%29.rar?dl=0

It's actually bad looking cause I just worked on it now and I don't wanna instantly go to stage V999.0 or something, When I feel like it I will start making it more better looking and advanced.

INGAME SCREENSHOTS: (COMING IN A FEW HOURS)

14
Bully Modding Archives / Shrimp's Locker.
« on: July 11, 2015, 12:23:41 PM »
Shrimp's
Locker!

so this locker is pretty much a place where my mod's are located and re-textures.
i'll provide a link to each mod unless it's not done.
key
[G] = finished state, unless a few minor shit needs fixing
[WP] = work in progress (e;g v1.0 of my texture mod)
[R] = Broken, dead, or need updating.


Textures:

The 'Urbans' Texture mod (Re-texture the Bullies clique for my series) [WP]




https://www.dropbox.com/s/wqwdh59qrtybj35/Bully%20SE%20%27The%20Urban%27s%27%20Texture%20Pack%20-%20V2.rar?dl=0

Gary's shirt re-texture (Jimmy's Bullworth vest) [G]



https://www.dropbox.com/s/a1q43k951y2y1xw/Bully%20SE%20Gary%20Re-skin%20%28Jimmy%27s%20Shirt%21%29.rar?dl=0

Derby's Vest re-texture (BLACK n RED)[G] (NO IMAGES)

https://www.dropbox.com/s/z9l4204d83h1mmi/Bully%20SE%20Derby%20Re-Texture%20%28Black%20shirt%29.rar?dl=0
https://www.dropbox.com/s/z1w8teajpohqmxa/Bully%20SE%20Derby%20Re-Texture%20%28Red%20Shirt%29.rar?dl=0

Beta Prep's Re-texture[WP/R]




https://www.dropbox.com/s/5e5a55btlmjtdtv/Bully%20SE%20Prep%27s%20Beta%20outfits%20%28texture%20%231%29.rar?dl=0

15
Requests / Custom Animations
« on: July 09, 2015, 01:34:39 PM »
Hey.

Is there a way to make Custom Animations in bully and import them? I would like to try; see if I can make it.

Pages: [1] 2