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

Pages: [1]
1
Modding Questions/Help / Where is the error in these scripts!!
« on: September 01, 2021, 07:17:36 AM »
hii guys, I'm making a mod where players can steal Ped's car, but here I have a problem, maybe this is a serious problem for me..

so can you see where is the error in this Script?, I am 100% sure there is nothing wrong with this Script but why is the code "if not PedIsInVehicle(NPC, VEH) then" not working?

but if I remove the word no, and it becomes "if PedIsInVehicle(NPC, VEH) then", it's safe, works fine..

can someone know where is the error in this Script?, I will be very happy if any of you can find where the error is, because I myself can't solve this mod despite using many ways.

Code: [Select]
function Car()
    while true do
        Wait(0)
        local FIND = VehicleFindInAreaXYZ(0, 0, 0, 999999)
        if type(FIND) == "table" then
            for V, VEH in ipairs(FIND) do
                if VehicleIsValid(VEH) then
                    if not VehicleIsModel(VEH, 272) and not VehicleIsModel(VEH, 273) and not VehicleIsModel(VEH, 274) and not VehicleIsModel(VEH, 275) and not VehicleIsModel(VEH, 276) and not VehicleIsModel(VEH, 277) and not VehicleIsModel(VEH, 278) and not VehicleIsModel(VEH, 279) and not VehicleIsModel(VEH, 280) and not VehicleIsModel(VEH, 281) and not VehicleIsModel(VEH, 282) and not VehicleIsModel(VEH, 283) and not VehicleIsModel(VEH, 284) and not VehicleIsModel(VEH, 289) then
                        for N, NPC in {PedFindInAreaXYZ(0, 0, 0, 999999)} do
                            if not PedIsInVehicle(NPC, VEH) then
                                VX, VY, VZ = VehicleGetPosXYZ(VEH)
                                X, Y, Z = PlayerGetPosXYZ()
                                if math.abs(VX - X) + math.abs(VY - Y) + math.abs(VZ - Z) <= 4.2 and not PlayerIsInAnyVehicle() and not PedHasWeapon(gPlayer, 437) and IsButtonBeingPressed(15,0) then
                                    repeat
                                        Wait(0)
                                        PedWarpIntoCar(gPlayer, VEH)
                                    until PedIsInVehicle(gPlayer, VEH)
                                end
                            end
                        end
                    end
                end
            end
        end
    end
end
             

2
Modding Questions/Help / Please fix this Node-O-Matic mod
« on: August 25, 2021, 10:10:53 PM »
can any of you guys fix this Node-O-Matic mod?
I'm confused why so many NODEs can't be detected, even Node Player

3
Bully Modding / Tutorial how to make mods on [ANDROID]
« on: June 04, 2021, 12:36:08 AM »
Hello everyone, I'm Poters, on this occasion I want to give a tutorial on how to make mods on Android 8), this time I don't explain how to code, if you want to learn how to code, you can follow my tutorial on this one :
https://bully-board.com/index.php?topic=25795.0

ok this time I want to introduce an application that can help us to make mods on android.
the name of the application is Exagear Windows Emulator, I found this application in 2020, maybe this still sounds very new and I have been using this application to make mods for almost 1 year, you could say maybe I am the first person to successfully make mods on android.
This Exagear Windows Emulator application is highly recommended for those of you who don't have a PC like me.
You can download the application here :
https://www.mediafire.com/download/a219jsuu59lp1x9

Alright instead of me talking a lot, let's go straight to the tutorial.

4
Modding Questions/Help / How to use math. sin/cos/abs?
« on: June 03, 2021, 09:03:39 AM »
Can anyone explain how to use math. sin or cos or abs?
I want to try making a blip mod like the one in this DeadpoolXYZ video :
https://youtu.be/CYvv98D2oaw

but I still don't know how to make one, and I'm thinking maybe the mod in this video uses the math function.

5
Modding Questions/Help / Would you please decompile this file!!
« on: May 31, 2021, 10:51:25 AM »
Can someone decompile the Bully Anniversary Edition Scripts file ??
because some Bully SE and Bully AE codes are different.
such as MGSumo.lur / MGSumo_data.lur files,
and TextPrintString which didn't work in the Bully Anniversary Edition.

please download the Scripts file here :
https://www.mediafire.com/download/kd7u1p3ghmcaskz

please decompile this file🙏

6
Bully Modding / How to make a mod for Free Roam mode
« on: May 30, 2021, 09:49:45 PM »
Ok Hello everyone, I am Poters, this time I will provide a tutorial on how to make a bully mod for Free Roam mode, I know that currently the Bully Board forum is dead, but make no mistake even though this forum is dead, but there are still many people who often visit this forum to learn to mod.
okay, let's just go to the tutorial, for this time I will only teach how to make simple mods, because I myself am a beginner modder.  :D

Well, the first step you have to do first is to download the LUA Scripts that I have made :
https://www.mediafire.com/download/ocgj2243yv2yuz9

If you have downloaded the file, we just need to edit the scripts.
You can use Notepad ++ for those of you who have a PC, and you can use Quick Edit, for those of you who don't have a PC.

7
Resolutions / Important Question!!
« on: May 30, 2021, 11:47:21 AM »
Hello modder legend of the game Bully,
I want to ask you.
Why do you have interesting knowledge but used as privacy, such as changing animations, demopiler applications, Source Bully.exe, and so on, why should you make your knowledge private? while you have retired to make bully game mods without telling the knowledge you have !! >:(

Hi dude, there are still many people who like mod mods for bully games, but if a legendary Modder like you has more knowledge but instead becomes privacy, that's really ridiculous, the current Bully novice modder won't develop if you don't share yours knowledge.

I know that currently the Bully Board forum is dead, but I'm sure there are still some people who are still active on the Bully Board, because Bully Board is a place for people to share knowledge and learn to make mods.

The point is I only want legend modders like you to share your Knowledge without making it Privacy :)

Sorry if my English is bad. :D

Pages: [1]