Bully-Board

Bully Modding Section => Script Modding => LUA Scripting Help => Topic started by: DarbyHarringtonMind on July 01, 2013, 03:18:36 AM

Title: Help!!
Post by: DarbyHarringtonMind on July 01, 2013, 03:18:36 AM
Why this 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(50000) -- gives the player 50000 health
  AreaTransitionXYZ(0,l_1_0,l_1_1,l_1_2)
  ifIsButtonPressed(0,0) then
  ---code of weather----
  elseifIsButtonPressed(1,0) then
  ---code of weather---
  (0,0)= left arrow
  (1,0)= right arrow
  (14,0)= X
  (15,0)= C
end
 
MissionCleanup = function()
end -- end statement
 
main = function() -- Main mission function
  repeat
    Wait(0)
  until l_0_0 ~= false
  Wait(3000)
  MissionSucceed()
end


When i compiling that,that not work....
can help me??
Title: Re: Help!!
Post by: c00ld0c26 on July 01, 2013, 03:28:27 AM
Does it let you compile? or when u try to use it, bully crashes?
Title: Re: Help!!
Post by: DarbyHarringtonMind on July 01, 2013, 03:33:35 AM
no, when I compile the lua
in cmd says: unexpected symbol near "then"
as was said cmd .....
@ c00ld0c26 can you fix my lua??
Title: Re: Help!!
Post by: c00ld0c26 on July 01, 2013, 03:34:36 AM
I think I can fix it, but I need you to tell me in which line it happends, it will write u the line's number, then I will be able to detect the problem.
Title: Re: Help!!
Post by: DarbyHarringtonMind on July 01, 2013, 03:39:16 AM
I think I can fix it, but I need you to tell me in which line it happends, it will write u the line's number, then I will be able to detect the problem.

IN Weather,or in then....
that problem...
Title: Re: Help!!
Post by: c00ld0c26 on July 01, 2013, 03:42:04 AM
I need the line.
 luac: Test.lua:23:
I marked where it will say the line with Red, tell me which line is the problem
Title: Re: Help!!
Post by: DarbyHarringtonMind on July 01, 2013, 03:44:53 AM
I need the line.
 luac: Test.lua:23:
I marked where it will say the line with Red, tell me which line is the problem


ok ...
luac: Weather.lua:12:
Title: Re: Help!!
Post by: c00ld0c26 on July 01, 2013, 04:01:59 AM
Was gonna answer on that, but you beat me :D
Title: Re: Help!!
Post by: DarbyHarringtonMind on July 01, 2013, 04:03:06 AM
Oh and my friend i saw the problem right here too.
--code of weather-- here is where the code of weather should be write here are the codes
weather (1)
weather (2)
weather (3)
weather (4)
weather (6)


yeah ok thanks,but in cmd says symbol near "then"
what that??

Title: Re: Help!!
Post by: DarbyHarringtonMind on July 01, 2013, 04:07:47 AM
Oh and my friend i saw the problem right here too.
--code of weather-- here is where the code of weather should be write here are the codes
weather (1)
weather (2)
weather (3)
weather (4)
weather (6)


yeah ok thanks,but in cmd says symbol near "then"
what that??
Make it like this
--ifIsButtonPressed(0,0)
plus those button and weather codes must be write under main fuction

you mean like this ,friend??
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(50000) -- gives the player 50000 health
  AreaTransitionXYZ(0,l_1_0,l_1_1,l_1_2)
  ifIsButtonPressed(0,0)
  ---code of weather----
  weather (1)
  weather (2)
  weather (3)
  weather (4)
  weather (6)
  elseifIsButtonPressed(1,0)
  ---code of weather---
  (0,0)= left arrow
  (1,0)= right arrow
  --(14,0)= X
  --(15,0)= C
end
 
MissionCleanup = function()
end -- end statement
 
main = function() -- Main mission function
  repeat
    Wait(0)
  until l_0_0 ~= false
  Wait(3000)
  MissionSucceed()
end


Title: Re: Help!!
Post by: SWEGTA on July 01, 2013, 04:51:56 AM
Here, I fixed it.
You can compile it, but I have no idea what you wanted from it.
Have a look through and do whatever you feel like.

I just made it compileable and it works for me.  :euro:

Code: [Select]
ImportScript("\\Library\\LibTable.lua")
ImportScript("\\Library\\LibPed.lua")
local l_0_0 = false
 
MissionSetup = function()
  local l_1_0 = 270
  local l_1_1 = -110
  local l_1_2 = 6.4000000953674
  PlayerSetHealth(50000)
  AreaTransitionXYZ(0,l_1_0,l_1_1,l_1_2)
end
 
 
---------------------
-- Weather codes:
  -- WeatherSet(0)
  -- WeatherSet(1)
  -- WeatherSet(2)
  -- WeatherSet(3)
  -- WeatherSet(4)
  -- WeatherSet(5)
  -- WeatherSet(6)
---------------------

 
MissionCleanup = function()
end
 
ButtonDetect = function() -- Sets up Button detection function
  if IsButtonPressed(0,0) then
-- SOMETHING HAPPENS

  elseif IsButtonPressed(1,0) then
-- SOMETHING HAPPENS
  end
end
 
main = function()
  repeat
    Wait(0)
ButtonDetect() -- Uses Button detection function
  until l_0_0 ~= false
  Wait(3000)
  MissionSucceed()
end
Title: Re: Help!!
Post by: DarbyHarringtonMind on July 01, 2013, 05:02:11 AM
Here, I fixed it.
You can compile it, but I have no idea what you wanted from it.
Have a look through and do whatever you feel like.

I just made it compileable and it works for me.  :euro:

Code: [Select]
ImportScript("\\Library\\LibTable.lua")
ImportScript("\\Library\\LibPed.lua")
local l_0_0 = false
 
MissionSetup = function()
  local l_1_0 = 270
  local l_1_1 = -110
  local l_1_2 = 6.4000000953674
  PlayerSetHealth(50000)
  AreaTransitionXYZ(0,l_1_0,l_1_1,l_1_2)
end
 
 
---------------------
-- Weather codes:
  -- WeatherSet(0)
  -- WeatherSet(1)
  -- WeatherSet(2)
  -- WeatherSet(3)
  -- WeatherSet(4)
  -- WeatherSet(5)
  -- WeatherSet(6)
---------------------

 
MissionCleanup = function()
end
 
ButtonDetect = function() -- Sets up Button detection function
  if IsButtonPressed(0,0) then
-- SOMETHING HAPPENS

  elseif IsButtonPressed(1,0) then
-- SOMETHING HAPPENS
  end
end
 
main = function()
  repeat
    Wait(0)
ButtonDetect() -- Uses Button detection function
  until l_0_0 ~= false
  Wait(3000)
  MissionSucceed()
end




thanks.... :D :D ;D ;D
Title: Re: Help!!
Post by: DarbyHarringtonMind on July 01, 2013, 05:19:12 AM
But,hey
why nothing change...???
why weather not change???
Title: Re: Help!!
Post by: SWEGTA on July 01, 2013, 08:07:10 AM
But,hey
why nothing change...???
why weather not change???

Because I told you, you have to make changes to it.
I just fixed it.
Title: Re: Help!!
Post by: DarbyHarringtonMind on July 01, 2013, 12:16:16 PM
But,hey
why nothing change...???
why weather not change???
Here
ifIsButtonPressed(0,0) then -- SOMETHING HAPPENS
WeatherSet(1)
elseifIsButtonPressed(1,0) then--SOMETHING HAPPENS
WeatherSet(2)



Thankss..... :D :D
Title: Re: Help!!
Post by: Red Blaster on July 02, 2013, 05:08:17 AM
There is a lot wrong with the original post, but this in particular is a huge mistake:

  (0,0)= left arrow
  (1,0)= right arrow
  (14,0)= X
  (15,0)= C

That's invalid lua.