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

Pages: [1]
1
I really appreciate all the help! Without you guys, I never would've been able to figure any of this out.

2
I'll try it, thanks dude!

3
Sorry if I'm pestering you by asking so many questions. But now the mission just ends right away saying "You Passed!" and no fighting actually happens. I tried looking on Bully Board but could not find anything. I even tried looking a lua tutorial but didn't find anything. Do you know how to make it so that when all the Preppy peds I included are passed out, that results in the end of the mission? Thanks for the help.

4
It worked! Thank you so much!

5
I'm sorry that I'm so inexperienced. It's my first time modding, but I honestly don't know how to set the encoding. I tried looking it up but found nothing.

6
Notepad ++

I basically copied this template from SWEGTA
Thanks for trying to help me too.

7
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

Pages: [1]