Jump to content
    1. Welcome to GTAForums!

    1. GTANet.com

    1. GTA Online

      1. Los Santos Drug Wars
      2. Updates
      3. Find Lobbies & Players
      4. Guides & Strategies
      5. Vehicles
      6. Content Creator
      7. Help & Support
    2. Red Dead Online

      1. Blood Money
      2. Frontier Pursuits
      3. Find Lobbies & Outlaws
      4. Help & Support
    3. Crews

    1. Grand Theft Auto Series

      1. Bugs*
      2. St. Andrews Cathedral
    2. GTA VI

    3. GTA V

      1. Guides & Strategies
      2. Help & Support
    4. GTA IV

      1. The Lost and Damned
      2. The Ballad of Gay Tony
      3. Guides & Strategies
      4. Help & Support
    5. GTA San Andreas

      1. Classic GTA SA
      2. Guides & Strategies
      3. Help & Support
    6. GTA Vice City

      1. Classic GTA VC
      2. Guides & Strategies
      3. Help & Support
    7. GTA III

      1. Classic GTA III
      2. Guides & Strategies
      3. Help & Support
    8. Portable Games

      1. GTA Chinatown Wars
      2. GTA Vice City Stories
      3. GTA Liberty City Stories
    9. Top-Down Games

      1. GTA Advance
      2. GTA 2
      3. GTA
    1. Red Dead Redemption 2

      1. PC
      2. Help & Support
    2. Red Dead Redemption

    1. GTA Mods

      1. GTA V
      2. GTA IV
      3. GTA III, VC & SA
      4. Tutorials
    2. Red Dead Mods

      1. Documentation
    3. Mod Showroom

      1. Scripts & Plugins
      2. Maps
      3. Total Conversions
      4. Vehicles
      5. Textures
      6. Characters
      7. Tools
      8. Other
      9. Workshop
    4. Featured Mods

      1. Design Your Own Mission
      2. OpenIV
      3. GTA: Underground
      4. GTA: Liberty City
      5. GTA: State of Liberty
    1. Rockstar Games

    2. Rockstar Collectors

    1. Off-Topic

      1. General Chat
      2. Gaming
      3. Technology
      4. Movies & TV
      5. Music
      6. Sports
      7. Vehicles
    2. Expression

      1. Graphics / Visual Arts
      2. GFX Requests & Tutorials
      3. Writers' Discussion
      4. Debates & Discussion
    1. Announcements

    2. Support

    3. Suggestions

Happy Holidays from the GTANet team!

[SA] Check if path Begin and END


Natso
 Share

Recommended Posts

This my simple code , but i want to know when Hydra begin path then show '0ACE: show_formatted_text_box "Hydra start path recording" , when end path '0ACE: show_formatted_text_box "Hydra end path" how i can check???

{$CLEO}0000:while true   wait [email protected] = 900Model.Load(#HYDRA)Model.Available(#HYDRA)Model.Load(#SWAT)Model.Available(#SWAT)07C0: load_path [email protected]:   path [email protected] available    if      0AB0:  key_pressed 8    then       Car.Create([email protected], #HYDRA, 2293.3713 -1297.2511 24.0)0129: [email protected] = create_actor_pedtype 4 model #SWAT in_car [email protected] driverseatwait 20005EB:  assign_car [email protected] to path [email protected]    endend
Edited by Natso
Link to comment
Share on other sites

spaceeinstein

Are you putting lines together without understanding how they work? Before printing your messages, you should fix the way you are spawning the Hydra. Conditional statements like "Model.Available" and "07C1: path ... available" should be placed as a condition in an if-statement if you want them to work the way you wanted.

 

if    Model.Available(#HYDRA)then    // ...end
Or you can use opcode 038B and you don't have to check for the availability at all.

 

Model.Load(#HYDRA)Model.Load(#SWAT)07C0: load_path 900038B:
Currently your code is repeatedly requesting two models and a car recording when only doing it once is enough. Since you are only utilizing the stuff after the key press, why not request the stuff after the key press?

 

while true  wait 0  if    0AB0:  key_pressed 8  then    Model.Load(#HYDRA)    Model.Load(#SWAT)    07C0: load_path 900    038B:    // ...  endend
You should add an additional check when pressing the key so that you are not creating multiple Hydras when you are holding down the key.

 

while true  wait 0  if    0AB0:  key_pressed 8  then    while if 0AB0:  key_pressed 8      wait 0    end    Model.Load(#HYDRA)    Model.Load(#SWAT)    07C0: load_path 900    038B:    Car.Create([email protected], #HYDRA, 2293.3713 -1297.2511 24.0)    0129: [email protected] = create_actor_pedtype 4 model #SWAT in_car [email protected] driverseat    05EB: assign_car [email protected] to path 900  endend
Edited by spaceeinstein
Link to comment
Share on other sites

Thanks you , i'll learn from experience and now how i can check if car end path?? . Because when end path car will stop and do nothing , i want it delete when end path

Link to comment
Share on other sites

 

{$CLEO}0000:while true   wait 300Model.Load(#HYDRA)Model.Available(#HYDRA)Model.Load(#SWAT)Model.Available(#SWAT)   07C0: load_path [email protected]:   path [email protected] [email protected] = 900  if        0AB0:  key_pressed 8    then    Car.Create([email protected], #HYDRA, 2295.1738 -1302.0791 24.0)0129: [email protected] = create_actor_pedtype 4 model #SWAT in_car [email protected] driverseatwait 20005EB: assign_car [email protected] to_path [email protected]: release_path [email protected]: unfreeze_car [email protected] while_on_pathprint "~R~GHOST:~W~ Hydra start recording" 1337 IF01AD:   car [email protected] sphere 0 near_point 2293.856 -1182.7545 26.5441 radius 6.0 6.0   THEN     05EC: release_car [email protected] from_path     print "~R~GHOST:~W~ Hydra  stop recording" 1337      Car.Destroy([email protected])       END    endend
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • 1 User Currently Viewing
    0 members, 0 Anonymous, 1 Guest

×
×
  • Create New...

Important Information

By using GTAForums.com, you agree to our Terms of Use and Privacy Policy.