:
Destination Time
:
Present Time
:
Last Time Departed

leo_dragons

Advanced Members
  • Content Count

    25
  • Joined

  • Last visited

Posts posted by leo_dragons


  1. Have you ever used GTA State of Liberty ??? It uses 3 SCM at the same time , each SMC is 3.0mb, and yes is possible to exceed the limit.

    The other day i tested a modified gta-vc.exe with 2 scm at the same time :

    main.scm, bttf.scm

    Need my help ?? contact me on MSN.


  2. First find this:

    MODE_1223
    Then copy this:
    if 
    
       Car.Model(0@) == #BAGGAGE
    
    else_jump @MODE_1372 
    
    04E1: open_trunk_of_car_fully 0@ 
    
    wait 2800 
    
    0407: create_coordinate 1@ 2@ 3@ from_car 0@ offset 0.0 0.0 -0.75 
    
    4@ = Car.Angle(0@)
    
    10@ = Car.Health(0@)
    
    Car.Destroy(0@)
    
    0@ = Car.Create(#BAGGAGE, 1@, 2@, 3@)
    
    Car.SetImmunities(0@, 0, 0, 0, 1, 1)
    
    053F: set_car 0@ tires_vulnerable 0 
    
    Car.Angle(0@) = 4@
    
    Car.Health(0@) = 10@
    
    10@ = Car.Model(0@)
    
    jump @MODE_1824
    (in my case is "@MODE_1824") Your code should be like this:
    :MODE_1372
    
    if 
    
       Car.Model(0@) == #BFINJECT
    
    else_jump @MODE_1521 
    
    04E1: open_trunk_of_car_fully 0@ 
    
    wait 2800 
    
    0407: create_coordinate 1@ 2@ 3@ from_car 0@ offset 0.0 0.0 -0.75 
    
    4@ = Car.Angle(0@)
    
    10@ = Car.Health(0@)
    
    Car.Destroy(0@)
    
    0@ = Car.Create(#BFINJECT, 1@, 2@, 3@)
    
    Car.SetImmunities(0@, 0, 0, 0, 1, 1)
    
    053F: set_car 0@ tires_vulnerable 0 
    
    Car.Angle(0@) = 4@
    
    Car.Health(0@) = 10@
    
    10@ = Car.Model(0@)
    
    jump @MODE_1824

    I hope this help you.