7
« on: July 13, 2016, 08:13:05 PM »
I keep getting this problem whenever I try to put my script into ArcRace 1. I've done all the tasks to compile the scripts, but when I get to the part where I need to use the Command Prompt, it shows me the error. If anyone could help, it would be much appreciated.
Basically what the mission is, is a brawl between the greasers and the socs AKA Preppies. I wanted to make this mission because I loved the outsiders.
Here is my code:
ImportScript("\\Library\\LibTable.lua")
ImportScript("\\Library\\LibPed.lua")
local l_0_0 = false
MissionSetup = function()
local l_1_0 = 480.52
local l_1_1 = -200.43
local l_1_2 = 2.91
AreaTransitionXYZ(0, l_1_0, l_1_1, l_1_2)
PlayerSetHealth(2000)
PedSetTypeToTypeAttitude(4, 13, 4)
PedSetTypeToTypeAttitude(5, 13, 0)
PedSetTypeToTypeAttitude(4, 5, 0)
Peanut = PedCreateXYZ(21, 478.22 , -200.73 , 2.95)
PedSetHealth(Peanut, 2000)
Hal = PedCreateXYZ(22, 475.22 , -202.22 , 3.00)
PedSetHealth(Hal, 2000)
Johnny = PedCreateXYZ(23, 473.29 , -203.48 , 3.05)
PedSetHealth(Johnny, 2000)
Lefty = PedCreateXYZ(24, 470.14 , -205.18 , 3.10)
PedSetHealth(Lefty, 2000)
Lucky = PedCreateXYZ(26, 467.81 , -205.71 , 3.14)
PedSetHealth(Lucky, 2000)
Vance = PedCreateXYZ(27, 468.27 , -203.03 , 3.12)
PedSetHealth(Vance, 2000)
Ricky = PedCreateXYZ(28, 470.92 , -202.25 , 3.08)
PedSetHealth(Ricky, 2000)
Norton = PedCreateXYZ(201, 478.92 , -199.85 , 2.93)
PedSetHealth(Norton, 2000)
Tad = PedCreateXYZ(31, 476.13 , -177.58 , 2.89)
PedSetHealth(Tad, 2000)
Chad = PedCreateXYZ(32, 474.31 , -179.63 , 2.91)
PedSetHealth(Chad, 2000)
Bif = PedCreateXYZ(33, 471.44 , -179.79 , 2.94)
PedSetHealth(Bif, 2000)
Justin = PedCreateXYZ(34, 468.77 , -180.30 , 2.95)
PedSetHealth(Justin, 2000)
Bryce = PedCreateXYZ(35, 466.05 , -181.25 , 2.99)
PedSetHealth(Bryce, 2000)
Darby = PedCreateXYZ(37, 463.08 , -181.66 , 3.00)
PedSetHealth(Darby, 2000)
Parker = PedCreateXYZ(40, 461.70 , -183.52 , 3.06)
PedSetHealth(Parker, 2000)
Chad = PedCreateXYZ(117, 464.72 , -183.13 , 3.04)
PedSetHealth(Chad, 2000)
Justin = PedCreateXYZ(118, 467.60 , -182.73 , 3.02)
PedSetHealth(Justin, 2000)
end
MissionCleanup = function()
end
main = function()
repeat
Wait(0)
until l_0_0 ~= true
Wait(3000)
MissionSucceed()
end