Bully-Board
Bully Modding Section => Script Modding => LUA Scripting Help => Topic started by: DarbyHarringtonMind on July 01, 2013, 03:18:36 AM
-
Why this not work??
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??
-
Does it let you compile? or when u try to use it, bully crashes?
-
no, when I compile the lua
in cmd says: unexpected symbol near "then"
as was said cmd .....
@ c00ld0c26 can you fix my lua??
-
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.
-
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...
-
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
-
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:
-
Was gonna answer on that, but you beat me :D
-
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??
-
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??
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
-
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:
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
-
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:
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
-
But,hey
why nothing change...???
why weather not change???
-
But,hey
why nothing change...???
why weather not change???
Because I told you, you have to make changes to it.
I just fixed it.
-
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
-
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.