Jump to content

ToonSkull

Members
  • Posts

    243
  • Joined

  • Last visited

  • Days Won

    2

Posts posted by ToonSkull

  1. So, does this keep CJ from running even if he's at the wall?

    It does a solid obstacle check when he is in his run animation. So if you hold ALT (walk) as you move toward a wall it won't do the KO animation. But even if he does get hit, he just stands right back up so at that point you could jump the wall. Also since fences are not walls it does not react on them or objects such as cars. The solid check runs between 10 and 50 cm from the front of his body and could be adjusted. You should have no trouble running along walls or on top of them, just at them.

  2. {$VERSION 3.1.0027}
    {$CLEO .cs}
    {CJ runs at any wall and smacks it, down he falls on his... well a bit more real than just jogging in place.
    Not as perfect as I would like it, CJ does tend to get a bit stuck after smacking into a wall. 
    But you can still jump walls. It doesn't do any damage just another reality concept.
    Special thanks to nabnabnabn -> http://www.gtaforums.com/index.php?showtopic=466576&view=findpost&p=1060283039
    Thanks to all those who helped in that thread.
    
    1.7.2011
    Vincent "ToonSkull" Black
    www.filefront.com/user/toonskull
    Binary file will be posted here soon.}
    
    thread 'kowall'
    
    :kowall_11
    wait 0
    if
     Player.Defined($PLAYER_CHAR)
    jf @kowall_11
    04ED: load_animation "PED"
    
    :kowall_38
    wait 0
    if
    04EE:   animation "PED" loaded
    jf @kowall_38
    //Makes sure we don't bump into stuff inside, only outside.
    :kowall_60
    wait 0
    077E: get_active_interior_to 7@
    if and
    7@ == 0
     Actor.Animation($PLAYER_ACTOR) == "RUN_PLAYER"
    jf @kowall_60
    04C4: store_coords_to 1@ 2@ 3@ from_actor $PLAYER_ACTOR with_offset 0.0 0.1 0.0
    04C4: store_coords_to 4@ 5@ 6@ from_actor $PLAYER_ACTOR with_offset 0.0 0.5 0.0
    if
    86BD:   not no_obstacles_between 1@ 2@ 3@ and 4@ 5@ 6@ solid 1 car 0 actor 0 object 0 particle 0
    jf @kowall_60
    0605: actor $PLAYER_ACTOR perform_animation_sequence "KO_SHOT_FACE" IFP_file "PED" 8.0 loop 0 0 0 0 time -1 // versionA
    
    :kowall_242
    wait 0
    if
     not Actor.Animation($PLAYER_ACTOR) == "KO_SHOT_FACE"
    jf @kowall_242
    0605: actor $PLAYER_ACTOR perform_animation_sequence "GETUP" IFP_file "PED" 6.0 loop 0 0 0 0 time -1 // versionA
    
    :kowall_308
    wait 0
    if
     not Actor.Animation($PLAYER_ACTOR) == "GETUP"
    jf @kowall_308
    jump @kowall_60 

  3. Huck, you are one sick puppy, I am of course talking about the soundtrack on your video. The car is uber cool, I assume you used Z-Modeler? I work in the Blender 3D more than anything else. I have a plugin to load GTA stuff but I don't know how it works or maybe I should say I can't work it very well.

    Ok I looked at yours you can go look at mine. I just uploaded a new mission menu CLEO script on this forum and mirrored here. Sorry I haven't been around since I am enjoying my Summer.

    • Like 1
  4. i just wanted to start with something simple so is it possible and if so how do you unlock "hot coffee" mini game on 1st edition for ps2

    You will need to purchase an Action Replay they run about $40 to $30 at most stores or you can buy them online.

    http://www.gamebay.com/ACTION_REPLAY_MAX_FOR_p/invof_801.htm

    Then you enter the code to unlock it.

    http://vgstrategies.about.com/od/playstation2codes/a/hotcoffeecodes.htm

    Otherwise you really need a PC version and a PC to do mods.

  5. on san andreas. woops.

    My brother says "no". You have to edit the dff's hierarchy table to reflect the name as well. Just swapping the files out won't work.

    If you know how to use a HEX editor open the dff of your car in that and look for the name only nothing else in ASCII (ex: banshee not bansheebody64G) you will find 2 occurrences change them to rhino. If all goes well it will work or crash. MAKE BACKUPS!

  6. i used certain vehicle and skin mods in gta sa by using txd and dff files, i used img editor to replace files and rebuilt the archive. it worked well and i enjoyed playing like that but now when i open certain garages got blocked nrg missions r not present neither i can find nrg500 nor i can spawn it using gta sa control center.

    i m stuck becoz that is my favorite bike so i uninstalled the game and installed again to get back that but now also same problem even my mods are still active in newly installed game too. no nrg spawn still no nrg missions

    plz help me what to do i don't know

    plz tell me the problem and solution too..

    thanks in advance

    If you used Vista, it keeps copies inside the C:\users\... folder. Personally I run Linux with WINE for GTA SA. I don't know about Windows 7 yet. I have read it is always best to install to the desktop or some personal folder that you can control and not where Windows wants it to be located.

    Sorry I don't have the exact location for you, but you should find it under protected files I think?

  7. Hi,

    I am wondering if there is a way to replace the water cannon on the Swatvan with a flame thrower?

    I have been searching through the files in the data folder trying to find how these weapons are handled, but i cant find them (for those vehicles that fire projectiles).

    If anyone knows how this might be achieved, let me know, i am so looking forwards to have some pyro fun.

    Thanks in advance for the help.

    You can place a flamethrower on ANY car. Here is a CLEO script that checks to see if you are driving a vehicle and you can use the "+" key on the numpad to activate the flame.

    {$VERSION 3.1.0027}
    {$CLEO .cs}
    
    //-------------MAIN---------------
    thread 'FLAME_CAR' 
    //Checks to see if the player is defined and driving any vehicle (might need restrictions)
    :FLAME_CAR_19
    wait 0 
    if and
      Actor.Driving($PLAYER_ACTOR)
      Player.Defined($PLAYER_CHAR)
    jf @FLAME_CAR_19 
    //Get the player's car as 0@ and add an invisible man with a flamethrower on it.
    :FLAME_CAR_44
    03C0: 0@ = actor $PLAYER_ACTOR car 
    Model.Load(#FLAME)
    Model.Load(#MALE01)
    038B: load_requested_models 
    0407: store_coords_to 1@ 2@ 3@ from_car 0@ with_offset 0.0 0.0 0.0 
    5@ = Actor.Create(CivMale, #MALE01, 0.0, 0.0, 0.0)
    01B2: give_actor 5@ weapon 37 ammo 99999 // Load the weapon model before using this 
    01B9: set_actor 5@ armed_weapon_to 37 
    Actor.WeaponAccuracy(5@) = 100
    //If you remove this line you will see the invisible man.
    0337: set_actor 5@ visibility 0 
    Actor.SetImmunities(5@, 1, 1, 1, 1, 1)
    //Set the current vehicle to FIRE PROOF
    Car.SetImmunities(0@, 0, 1, 0, 0, 0)
    02A9: set_actor 5@ immune_to_nonplayer 1 
    0619: enable_actor 5@ collision_detection 0 
    06A7: put_actor 5@ into_turret_on_car 0@ at_car_offset 0.0 2.0 0.0 position 2 shooting_angle 0.0 0.0 with_weapon 37 
    Model.Destroy(#FLAME)
    Model.Destroy(#MALE01)
    //Wait for a keypress of 107 "+" on the numpad or LMB Fire
    :FLAME_CAR_239
    wait 0 
    if 
      Actor.InCar($PLAYER_ACTOR, 0@)
    jf @FLAME_CAR_357 
    if 
      not Actor.Dead(5@)
    jf @FLAME_CAR_379 
    if or
    00E1:   player 0 pressed_key 17 
    0AB0:   key_pressed 107 
    jf @FLAME_CAR_239 
    //Need to add some target control here so far just fires forwards.
    017B: set_actor 5@ weapon 37 ammo_to 99999 
    0407: store_coords_to 1@ 2@ 3@ from_car 0@ with_offset 0.0 100.0 0.0 
    0668: AS_actor 5@ rotate_and_shoot_at 1@ 2@ 3@ 100 ms 
    jump @FLAME_CAR_239 
    //Player left car make it normal.
    :FLAME_CAR_357
    Actor.DestroyInstantly(5@)
    Car.RemoveReferences(0@)
    wait 1000 
    jump @FLAME_CAR_19 
    //Invisible man dead? REALLY! Wow, how did you manage that?
    :FLAME_CAR_379
    Actor.DestroyInstantly(5@)
    Car.RemoveReferences(0@)
    jump @FLAME_CAR_44 
    

    I don't know if this works with ALL vehicles somewhat untested. Have fun you funny arsonist you!

    EDIT: I made some changes lowered my invisible man to make the flames seem to come from the grill. Added LMB keypress. I tested a BMX that is funny riding a BMX shooting flames. Also since you are not holding the weapon the cops don't blame you.

  8. Here is a shorty;

    {$VERSION 3.1.0027}
    {$CLEO .cs}
    //Coded by Vincent Black
    //June 6th, 2010
    //-------------MAIN---------------
    thread 'FINDTAGS' 
    //Loop here until the player pressed "T"
    :FIND_TAGS_1
    wait 0
    if
    0AB0:  key_pressed 0x54
    jf @FIND_TAGS_1
    //Get player position and nearest TAG 
    04C4: store_coords_to 1@ 2@ 3@ from_actor $PLAYER_ACTOR with_offset 0.0 0.0 0.0 
    07A6: get_nearest_tag_location_near_point 1@ 2@ 3@ store_to 8@ 9@ 0@
    //Create a marker on TAG 
    018A: 4@ = create_checkpoint_at 8@ 9@ 0@ 
    Marker.SetColor(4@,1)
    //Wait 15 seconds clear the marker and restart the loop
    :FIND_TAGS_2
    wait 15000
    Marker.Disable(4@)
    jump @FIND_TAGS_1
    

    Issues include; sprayed tags are not eliminated from search and only the nearest tag is shown.

  9. OK you can now download all three here.

    There are some things you might want to know. Real traffic has 2 versions the one titled "real traffic alt" will NOT lock the car doors. Install only 1 of these 2 mods. This mod was pretty glitch filled and while I fixed most of them there are some minor issues. Like alternate version vehicles might change in appearance upon approach. I have ran the mod without crashing the program for sometime now. Hippiecommunist on GTAforums original code worked to some degree and I thank him for laying the foundation.

    Real Cops watches for you to get any stars. It scans the area around you for police. Then is holds them, you will hear the police report and be notified that there is a witness. If you kill the Witness within 30 seconds the star won't show up. However stars go into effect right away is the witness is a cop.

    Real Cop Cars watches for 3 things to occur. You must be wanted, driving a vehicle, and speeding over 25 KPH. Then 2 special made police vehicles spawn right behind you. They have but one motivating factor. KILL the player. They will continue to pursue your vehicle until it is riddled with bullets. Note: if you jump from your vehicle they chase the vehicle.

    You can do whatever you like with these mods. I have included notes on how each section is supposed to work.

    HAVE FUN!

    Vincent Black

  10. Nice... I'll try testing this when I have time.

    Something is causing the traffic mod to crash near the tunnel by the airport. I can't figure it out yet. I am tired of the cops assisting other gang members when they shouldn't be taking sides. Other than that, I am trying to get the cop cars to stay on your tail and not drive like a bunch of dorks.

    EDIT: Ok I figured it out there are single passenger fork trucks over there.

  11. This grabs the wanted level and stores it. Then it scans 30 meters (about 100 feet) around you for any cops or civilians (gangs don't narc). You will still hear a police report but no stars will post. At this point you should look for a red marker on your radar. That person is running for help. Then if you can kill them in 30 seconds you will still have no stars. If the witness is a cop the stars will apply right away and the mod waits for you to clear them.

    {$VERSION 3.1.0027}
    {$CLEO .cs}
    //This mod hooks the wanted level and checks for cops within 100 feet of the player.
    //Coded by Vincent Black aka ToonSkull
    //June 6th, 2010
    //-------------MAIN---------------
    thread 'RCOPCARS' 
    //Load Wanted Level into variable 1@
    :RCOPCARS_19
    wait 0 
    1@ = Player.WantedLevel($PLAYER_CHAR)
    if 
     1@ > 0 
    jf @RCOPCARS_19 
    Player.ClearWantedLevel($PLAYER_CHAR)
    10@ = 0 
    //Set a counter to zero in 10@
    :RCOPCARS_61
    wait 0 
    04C4: store_coords_to $4 $5 $6 from_actor $PLAYER_ACTOR with_offset 0.0 0.0 0.0 
    08E5: get_actor_in_sphere $4 $5 $6 radius 30.0 handle_as 3@ 
    if 
      not 10@ >= 100 
    jf @RCOPCARS_19 
    10@ += 1 
    //Stop scanning after 100 loops assume no one saw anything.
    if 
    056D:   actor 3@ defined 
    jf @RCOPCARS_61 
    089F: get_actor 3@ pedtype_to 5@ 
    if or
     5@ == 4 
     5@ == 5 
     5@ == 6 
    jf @RCOPCARS_61 
    //We have a witness.
    //Set timer to zero.
    32@ = 0 
    if 
      not 5@ == 6 
    jf @RCOPCARS_241 
    //Witness Marker
    12@ = Marker.CreateAboveActor(3@)
    07E0: set_marker 12@ type_to 0 
    Marker.SetColor(12@, 0)
    
    :RCOPCARS_241
    wait 0 
    if 
      Actor.Dead(3@)
    jf @RCOPCARS_273 
    //Killed the Witness.
    Marker.Disable(12@)
    jump @RCOPCARS_19 
    
    :RCOPCARS_273
    if or
     32@ >= 30000    //30 seconds to kill the witness
     5@ == 6         //Witness is a cop so timer don't matter.
    jf @RCOPCARS_241 
    //Reset Wanted Level stored in 1@
    Player.WantedLevel($PLAYER_CHAR) = 1@
    if 
      not 5@ == 6 
    jf @RCOPCARS_307 
    Marker.Disable(12@)
    //Loop here until Wanted Level is cleared.
    :RCOPCARS_307
    wait 0 
    1@ = Player.WantedLevel($PLAYER_CHAR)
    if 
     1@ == 0 
    jf @RCOPCARS_307 
    jump @RCOPCARS_19 
    

    Next this code is based on HippieCommunist's who is too busy with GTA IV to even talk to me. Some users don't care that all the modded cars have the doors locked. This version also has doors locked but if you read through my comments you can see how to swap it for car health. I set my distance to 60.0 meters because it felt right. I found setting it higher fewer cars get selected. While setting it lower makes for more accidents. I also made sure the passengers got placed back inside the vehicle. His mod the passengers disappear and only the drivers remain.

    {$VERSION 3.1.0027}
    {$CLEO .cs}
    
    //-------------MAIN---------------
    thread 'REALTRAFFIC'
    //Based on HippieCommunist version 2008 - 2010.
    //Re-coded by Vincent Black aka ToonSkull
    //June 5th, 2010
    :REALTRAFFIC_19
    wait 0
    //Grab any vechicles near player
    04C4: store_coords_to 1@ 2@ 3@ from_actor $PLAYER_ACTOR with_offset 0.0 0.0 0.0
    073E: get_car_in_sphere 1@ 2@ 3@ radius 60.0 model -1 handle_as 0@
    //Car Info
    if
    056E:   car 0@ defined
    jf @REALTRAFFIC_19
    //Driver Info
    046C: 1@ = car 0@ driver
    if
    056D:   actor 1@ defined
    jf @REALTRAFFIC_19
    if
     not Actor.DrivingPoliceVehicle(1@)
    jf @REALTRAFFIC_19
    //This is a cool way to figure out which cars are modified. Just Lock the doors.
    //See notes if you don't like this option.
    //4@ = Car.Health(0@)
    09B3: get_car 0@ door_status 4@
    089F: get_actor 1@ pedtype_to 3@
    //No mods, bikes, Criminals, or Cops
    if and
     not 4@ >= 3     //Doors are locked = car is already modded - ALT is "4@ == 1000"
     not 3@ == 6     //Is a Cop
     not 3@ == 20    //Is a Criminal
    847A:   not actor 1@ driving_bike
    jf @REALTRAFFIC_19
    03F3: get_car 0@ primary_color_to 11@ secondary_color_to 12@
    5@ = Car.Model(0@)
    6@ = Car.Angle(0@)
    02E3: 7@ = car 0@ speed
    //Get the driver
    0665: get_actor 1@ model_to 2@
    0407: store_coords_to 8@ 9@ 10@ from_car 0@ with_offset 0.0 0.0 0.0
    Actor.RemoveReferences(1@)
    //Car Capacity Check  
    13@ = 0
    14@ = 0
    15@ = 0
    01EA: 22@ = car 0@ max_passengers
    //Two Door Check
    if
    22@ == 3
    jf @REALTRAFFIC_404
    //Four Door Check Rear Seats
    //Rear Seat passenger
    if
    8431:   not car 0@ passenger_seat_free 2
    jf @REALTRAFFIC_355
    0432: 16@ = get_actor_handle_from_car 0@ passenger_seat 2
    0665: get_actor 16@ model_to 13@
    089F: get_actor 16@ pedtype_to 19@
    Actor.RemoveReferences(16@)
    //Rear Seat passenger
    :REALTRAFFIC_355
    if
    8431:   not car 0@ passenger_seat_free 1
    jf @REALTRAFFIC_404
    0432: 17@ = get_actor_handle_from_car 0@ passenger_seat 1
    0665: get_actor 17@ model_to 14@
    089F: get_actor 17@ pedtype_to 20@
    Actor.RemoveReferences(17@)
    //Front Seat Passenger
    :REALTRAFFIC_404
    if
    8431:   not car 0@ passenger_seat_free 0
    jf @REALTRAFFIC_453
    0432: 18@ = get_actor_handle_from_car 0@ passenger_seat 0
    0665: get_actor 18@ model_to 15@
    089F: get_actor 18@ pedtype_to 21@
    Actor.RemoveReferences(18@)
    
    :REALTRAFFIC_453
    Car.Destroy(0@)
    0@ = Car.Create(5@, 8@, 9@, 10@)
    Car.Angle(0@) = 6@
    //This line was used for testing it turns the cars black
    //Not all the cars turn black as I approach them so it still needs tweaking.
    //0229: set_car 0@ primary_color_to 0 secondary_color_to 0
    0229: set_car 0@ primary_color_to 11@ secondary_color_to 12@
    0129: 1@ = create_actor_pedtype 3@ model 2@ in_car 0@ driverseat
    //Place passengers (if any)
    if
     not 13@ == 0
    jf @REALTRAFFIC_559
    01C8: 16@ = create_actor_pedtype 19@ model 13@ in_car 0@ passenger_seat 2
    0526: set_actor 16@ stay_in_car 1
    Model.Destroy(13@)
    Actor.RemoveReferences(16@)
    
    :REALTRAFFIC_559
    if
     not 14@ == 0
    jf @REALTRAFFIC_610
    01C8: 17@ = create_actor_pedtype 20@ model 14@ in_car 0@ passenger_seat 1
    0526: set_actor 17@ stay_in_car 1
    Model.Destroy(14@)
    Actor.RemoveReferences(17@)
    
    :REALTRAFFIC_610
    if
     not 15@ == 0
    jf @REALTRAFFIC_661
    01C8: 18@ = create_actor_pedtype 21@ model 15@ in_car 0@ passenger_seat 0
    0526: set_actor 18@ stay_in_car 1
    Model.Destroy(15@)
    Actor.RemoveReferences(18@)
    //Set behaviors
    :REALTRAFFIC_661
    Car.SetSpeedInstantly(0@, 7@)
    Car.SetToNormalDriver(0@)
    Car.SetDriverBehaviour(0@, FollowRoad)
    00AE: set_car 0@ traffic_behaviour_to 1
    //Lock the doors - some players don't like this option so it could be
    //written to use Car.Health(0@) and just add 1 point so car health is not normal.
    //4@ += 1
    //Car.Health(0@) = 4@
    Car.DoorStatus(0@) = 3
    04E0: car 0@ abandon_path_radius 0
    Model.Destroy(5@)
    Model.Destroy(2@)
    Actor.RemoveReferences(1@)
    Car.RemoveReferences(0@)
    jump @REALTRAFFIC_19 

    My third mod is REAL police car chases and I am still working on it. Once I am done I will upload all 3 in a zip file to the downloads section.

  12. Have you tried a trainer? Some trainers will "give you 100%" for Barb.

    You would need to edit "Shopping.dat" but;

    1. You can't add more than 12 items per section for the store this could cause the crash.

    2. It is very hard to edit without a clothing store editor.

    3. I have no idea what the label for the police uniform is called.

    I would just get a trainer and get Barb set to 100%, it would be easier than working the shopping.dat or download the Ultimate Editor 3.06 Download Here it has a store editor.

  13. Anyone having problems with Tenpenny Stories missions should check it out; YouTuber King Brace Blane has posted video walk throughs for "Cleaning the Hood", "King of the Hill", "Gray Exports", and "Double Boom!". He said in an email today he is working on videos of "Path of the Snake", "In Search of the Truth" and "Epsilon Cult".

    He has told us that he beat the entire mod in one weekend. Also the man is about 50 something, which kind of is a shock to me. Most of the people who play this are teens. He is a computer geek and a you tuber but doesn't like joining forums. He did supply us with some answers to coding problems and got his name in the credits.

    Now for some disturbing news. GTA Garage no longer hosts this mod. Josh and I don't blame them, but I personally believe they need to rethink policy. I placed Alci's GUI for SAAT inside the JOE release because a. people had sound issues otherwise b. so users didn't have to look for a copy elsewhere and c. it made the download 24MB instead of 57MB.

    The GTA Garage's policy is not to place (any) tools including SAAT into your mods. Even when SAAT is a GNU public licensed program and can be according to the contributors. Meanwhile Alci's GUI contains SAAT and is still hosted on the GTA Garage (I don't want them to pull it either). The reason they give for this policy is not mod ripping or bandwidth issues but they say you might have an outdated copy. Neither the GUI or SAAT has been upgraded in years.

    Q: Why don't we simply remove SAAT and the GUI and include a download link?

    A: In the near future the link may change and/or the programs hard to locate even by a Google search. Total size is less than 5MB added. We are striving to make all the downloads uniform as possible, although if anyone desires to post such altered mod of Tenpenny Stories, by all means you have our permission. Make sure you state how the mod is altered.

    Joshua did this mod to show people learning this how to make a mission mod without Cleo. I did the sound pack and apparently I am to blame for it getting booted off the GTA Garage. Josh said, it doesn't matter and said the sound pack will not change. They didn't accuse us of being pirates, it is just policy.

    The attachment above should work well we are still waiting for a positive response.

    Thank you,

    Vincent

  14. Is it okay if you add a walkthrough of this on youtube? I've seen the trailer, asnd it was nice!

    I don't think anyone can complain just place a spoiler warning above the video. Blane cams his but does a pretty good job. Not everyone can afford a good video capture card. I barely can afford a graphics card. He told me in his last email he is posting the Gray Exports. So I guess he is hitting the harder missions first.

  15. Whenever I install a siren mod using Alci's SAAT GUI Frontend, the siren I install works fine, but it seems to corrupt some other audio files - I hear a wierd humming noises instead of the cars brakes, reversing, and the engine of a helicopter.

    Anyone know how to fix that?

    Make sure your sound file matches. The way to make certain. Open the original siren and record the new sound over the top of it then save "as is". If you recall the first time I messed with the audio it corrupted other files. So when I redid Tenpenny Stories audio, I opened the new sound file in media player (just to play it) and the banked one in recorder. Set your audio record option to stereo mix. Play the new siren in loop. Record over the top of the old siren making sure you change no values. That should do the trick.

    OT: Have you started back to school yet there? My brother and I signed up for our classes, I have two advanced subjects (I didn't ask for them) Geometry and Biology. But I am happy I got my Film Lit and French 101. :D

  16. Hello,

    I received an email from King Brace Blane. He is not a member here or any other forum but the man has agreed to post all the video walkthroughs and bugs on his youtube channel. www.youtube.com/kingbraceblane

    Here is what he wrote:

    Vincent,

    Yes. I can host the walkthroughs, I beat this mod over the past weekend but not without some difficulties.

    Here is my Letterman list of things that remain.

    1. A green house (property icon) in Blueberry. Nothing there - glitch at coord 0,0,0

    2. Missing red rings after "Chinese Steak" mission. I don't know but you can find the mission if you walk around.

    3. Deformed CJ mesh "Pretzel Boy" shows up on entering buildings. This is caused by stats changing while outside.

    4. Cars pile up in impound generated one on top another. - Not a real issue just strange parking behavior.

    5. People appear in safe house and sometimes attack you. Burglers?

    6. The end credits loop but you can still move around.

    7. Some of the subtitles still don't exist or don't show up.

    8. Some missions will crash or get stuck. But if you saved then you can always try again.

    9. Dogfight at the desert aiport is too hard imo I can't shoot down either plane.

    10. "Epislon Cult" weird plot. The mission could get stuck if the person playing has no idea where the cult farm is and loses the "Trenchcoat man".

    I never modded this game but I do understand the binary code. I am sorry Vincent I don't do the forum thing. YTube is about as close as I get and I just mainly use it for bookmarks. I rarely check my messages on youtube so here is my email <OMITED> so you can write me directly.

    Tell Josh that I think this is done enough people can play it to the very cool ending. ;) I understand his desire to use this as a teaching tool. I have been in computers since punch cards and you guys have done a real great job. Let me know when you graduate college maybe there's a job in programming for you both.

    Meanwhile I will get my camera setup and record me playing some of these missions. I don't have a capture card or fancy PC here at home, and I don't think the boss would like me playing it at work. :D

    Cya l8tr!

    KBB

    I am only in the 10th grade... I plan to go to college to become a video store clerk. But that is another story. Well there you have it some OLD FART beat it and now you can too.

    Josh said, "Do as you wish the source code is yours!".

    He and I signed up for classes yesterday and I am taking; Accelerated Geometery, US History, French, Film Lit, American Lit 2, and Accelerated Biology. All this starts 8-8-09 so I will let you know how that goes. One of us will poke our head in here from time to time.

  17. post-24009-1250501044_thumb.jpg

    I think I am about done here now. So if this model looks ok, I am handing the 3DS off to my brother Josh. He has to import it to the zmodeler and place the parts into the correct positions so the work proper. He needs to test it out and make sure the peds and player look right riding on it. All that will take a little time so be patient.

    Thanks!

    • Like 1
  18. It wont uninstall. The only thang that happened is the text when I start a new game goes away :(

    If it is still installed you should find:

    Rockstar Games\GTA San Andreas\data\script\main.scm

    Rockstar Games\GTA San Andreas\data\script\main.tbk <-- this is the back up and should be 3,025 KB

    Rockstar Games\GTA San Andreas\data\script\script.img

    Rockstar Games\GTA San Andreas\data\script\script.tbk <-- this is the back up and should be 562 KB

    Rockstar Games\GTA San Andreas\text\american.gxt

    Rockstar Games\GTA San Andreas\text\american.tbk <-- this is the back up and should be 721 KB

    ONLY IF these files exist then you can delete the first and replace it with the back up by changing the extension. The install program no longer makes back ups of the:

    Rockstar Games\GTA San Andreas\audio\SFX\SCRIPT

    and this should have been backed up prior to modding as expressed in my tutorial. If you are using Vista you might want to reinstall from the CD/DVD it won't hurt your original saved games. Vista is know for making shadow backups and doesn't always uninstall even if you do so manually. I am not picking on Vista, it is just one of MS "innovative ideas" that didn't work out so well.

    If the tbk files don't exist then check the file sizes, installing twice in a row would cause your backups to be overwritten.

  19. Well I guess that they are feeding the American farmers so they can feed the world and not pass out in the field from starvation... No, that can't be it. <_< Maybe they are feeding the illegal migrant farm workers so they can feed the world and not pass out in the fields..... :erm: yeah it doesn't make sense.

    I agree food is not the issue anywhere in North American. Money and jobs to buy food, yes but there is plenty of food. Transportation of food is also an issue. So why didn't they just say feed the world?

×
×
  • Create New...