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 - Black Norton

Pages: [1] 2 3 ... 8
1
Modding Questions/Help Archives / Open Locked Door??
« on: January 14, 2014, 07:32:59 AM »
i have a simply question
How to open the locked door thought LUA?

thanks. . .

2
Just try by your self man. . .
if you want to get full style you must find by yourself. . .
extract Act.img with IMGTool and hexedit the style (Johnny.cat)

3
Modding Questions/Help Archives / Re: This Command not work??
« on: January 03, 2014, 08:21:19 PM »
works. . .
thanks c00ld  :D

can i ask some code again?

4
Modding Questions/Help Archives / Re: This Command not work??
« on: January 02, 2014, 06:57:13 AM »
Not work
look
Code: [Select]
ImportScript("\\Library\\LibTable.lua") -- imports the LibTable library
ImportScript("\\Library\\LibPed.lua") -- imports the LibPed library
local l_0_0 = false
 
MissionSetup = function() -- basic mission setup function which is used in almost all bully scripts
  local l_1_0 = 270 -- X coords
  local l_1_1 = -110 -- Y coords
  local l_1_2 = 6.4000000953674 -- Z coords
  PlayerSetHealth(200) -- gives the player 200 health
  AreaTransitionXYZ(0, l_1_0, l_1_1, l_1_2) -- teleports the player to the sidewalk outside the boys dorm
  end
 
  F_Davis = function()
  Davis = PedCreateXYZ(99, 301.498993, -72.504997, 6.003000)
  DavisBlip = AddBlipForChar(Davis, 6, 2, 2)
  end
 
  F_Davis2 = function()
  if PedInRectangle(gplayer, 326.8171387, -103.0250931, 323.7320557, -95.51804352) then
  PedRecruitAlly(gplayer, Davis)
  end
  end
 
MissionCleanup = function()
collectgarbage()
end -- end statement

main = function()
F_Davis() -- Function Call
F_Davis2()
end

why??  :confused:

5
Introduce Yourself / Re: Hey Guys
« on: December 31, 2013, 05:54:33 AM »
Welcome  :D

6
Modding Questions/Help Archives / Re: This Command not work??
« on: December 31, 2013, 05:50:56 AM »
But i don't understand about
Code: [Select]
PedIsinRectangle(Ped,X1,Y1,X2,Y2)

7
Modding Questions/Help Archives / Re: This Command not work??
« on: December 30, 2013, 05:21:02 AM »
Huh?? :blink:

nobody can fix my script?? :(

8
Modding Questions/Help Archives / Re: This Command not work??
« on: December 28, 2013, 04:41:03 AM »
Quote
You want davis is be your bodyguard?

No. . .
i mean if i reach the trigger davis will be recruited

9
Modding Questions/Help Archives / This Command not work??
« on: December 28, 2013, 01:49:08 AM »
Help
why this code not work

Code: [Select]
ImportScript("\\Library\\LibTable.lua") -- imports the LibTable library
ImportScript("\\Library\\LibPed.lua") -- imports the LibPed library
local l_0_0 = false
 
MissionSetup = function() -- basic mission setup function which is used in almost all bully scripts
  local l_1_0 = 270 -- X coords
  local l_1_1 = -110 -- Y coords
  local l_1_2 = 6.4000000953674 -- Z coords
  PlayerSetHealth(200) -- gives the player 200 health
  AreaTransitionXYZ(0, l_1_0, l_1_1, l_1_2) -- teleports the player to the sidewalk outside the boys dorm
  end
 
  F_Davis = function()
  Davis = PedCreateXYZ(99, 301.498993, -72.504997, 6.003000)
  DavisBlip = AddBlipForChar(Davis, 6, 2, 2)
  end
 
  F_Davis2 = function()
  if PlayerIsInTrigger(TRIGGER._TSCHOOL_FRONTGATE) then
  PedRecruitAlly(gplayer, Davis)
  end
  end
 
MissionCleanup = function()
collectgarbage()
end -- end statement

main = function()
F_Davis() -- Function Call
F_Davis2()
end

why davis didn't recruited??

10
Grand Theft Auto Mods / Re: Create Mission In GTA San Andreas
« on: December 26, 2013, 06:02:54 AM »
GTA San Andreas doesn't use LUA. It uses SCM.

You can open up the Main.scm [Located in GTA San Andreas\data\script] with Sanny Builder.

A modder in gtagarage made a mod that allows you to create missions and share them with other people. It is user friendly so it's not necessary to know scm scripting.

http://www.gtagarage.com/mods/show.php?id=5038

Ok thanks  :D

11
Modding Questions/Help Archives / Strafe??
« on: December 26, 2013, 05:25:08 AM »
What is Strafing and how to do that?
thanks  :D

12
LUA Scripting Help / Re: What Is this command??
« on: December 26, 2013, 05:23:27 AM »
Ok thanks  :D

13
LUA Scripting Help / What Is this command??
« on: December 25, 2013, 01:02:32 AM »
-PlayerGetPos??
-PedGetPos??
-PedMoveToPoint??
-PedCreatePoint??
-PedIsInTrigger??
-PedFollowPath??
-collectgarbage??

i need an explanation and how to use the command
thanks  :D

14
Grand Theft Auto Mods / Create Mission In GTA San Andreas
« on: December 25, 2013, 12:54:57 AM »
If Bully can make own mission using LUA,how about GTA San Andreas??

15
Modding Questions/Help Archives / Help
« on: December 24, 2013, 10:16:46 AM »
How to make ped riot and remove all vehicle,townperson and cops??(Like Mission The Rumble)

thanks

Pages: [1] 2 3 ... 8