1. Welcome to Tacoma World!

    You are currently viewing as a guest! To get full-access, you need to register for a FREE account.

    As a registered member, you’ll be able to:
    • Participate in all Tacoma discussion topics
    • Communicate privately with other Tacoma owners from around the world
    • Post your own photos in our Members Gallery
    • Access all special features of the site

Orange County CAF's: up to no good

Discussion in 'Southern California' started by Nicklovin, Apr 27, 2012.

  1. Jul 12, 2016 at 1:16 PM
    RynoDyno

    RynoDyno Well-Known Member

    Joined:
    Jun 25, 2016
    Member:
    #190495
    Messages:
    209
    Vehicle:
    2016 DCSB
    they are problems the the professor popped out of his head. im not too great at it but thats as far as i got haha
     
    digitaLbraVo[QUOTED] likes this.
  2. Jul 12, 2016 at 1:16 PM
    ODNAREM

    ODNAREM MEMBER Of The Church Of @ODNAREM

    Joined:
    Feb 28, 2015
    Member:
    #149762
    Messages:
    41,285
    Gender:
    Male
    First Name:
    Ron
    Huntington Beach,CA.
    Vehicle:
    2012 TRD Sport Prerunner
    TRD catback exhaust,FJ Cruiser trail team wheels,BFG All Terrain K02 tires,Grillcraft front grill,Pelfreybilt IFS/Mid skids,sliders,standard rear bumper,Total Chaos bed stiffeners.TRD Pro Bilstein front/rear suspension.
    :laugh:image.jpg
     
  3. Jul 12, 2016 at 1:17 PM
    tcBob

    tcBob Gringo Bandito Moderator

    Joined:
    Sep 6, 2006
    Member:
    #1
    Messages:
    15,515
    Gender:
    Male
    First Name:
    Bob
    Vehicle:
    07 PreRunner SR5 V6 Black
    i heart c++.png
    Correct...that could be shortened easily since the number of * characters is directly correlated to the number next to them.
     
  4. Jul 12, 2016 at 1:17 PM
    eccracer104

    eccracer104 O.G. Member

    Joined:
    Apr 9, 2008
    Member:
    #5854
    Messages:
    14,169
    Gender:
    Male
    First Name:
    Mike
    San Diego, CA
    Vehicle:
    2016 Tundra 4x4
    Don't put it on a different clip setting, that would change the lean too much. The 1/4" spacer is just right. (give about 1/2" extra lift for the drivers side)

    That's perfect. add a leaf will be much better than the block you currently have.
    Comes with Eibach coils so you're good there!
    Just search around and check out toytec direct, headstrong offroad, wheelers, and before ordering call them. A lot of places offer a TW discount.
     
    ODNAREM likes this.
  5. Jul 12, 2016 at 1:20 PM
    RynoDyno

    RynoDyno Well-Known Member

    Joined:
    Jun 25, 2016
    Member:
    #190495
    Messages:
    209
    Vehicle:
    2016 DCSB
    //System Libraries
    #include <iostream> //Input/Output Library

    usingnamespace std; //Namespace of the System Libraries
    //User Libraries

    //Global Constants

    //Function Prototypes

    //Execution Begins Here!
    int main(int argc, char** argv) {
    //Declare Variables
    unsignedshort x;
    unsignedchar n1000s,n100s,n10s,n1s;

    //Input Data

    cout<<"Input a four digit number to convert"<<endl;
    cout<<"to star power"<<endl;
    cin>>x;


    //Process the Data
    if(x<0||x>9999)return1;


    //Output the processed Data
    //Thousands Position
    n1000s=(x-x%1000)/1000;
    switch(n1000s){
    case9:cout<<"9 *********\n";break;
    case8:cout<<"8 ********\n";break;
    case7:cout<<"7 *******\n";break;
    case6:cout<<"6 ******\n";break;
    case5:cout<<"5 *****\n";break;
    case4:cout<<"4 ****\n";break;
    case3:cout<<"3 ***\n";break;
    case2:cout<<"2 **\n";break;
    case1:cout<<"1 *\n";break;
    case0:cout<<"0 \n";
    }

    //Hundreds Position
    x-=n1000s*1000;
    n100s=(x-x%100)/100;
    switch(n100s){
    case9:cout<<"9 *********\n";break;
    case8:cout<<"8 ********\n";break;
    case7:cout<<"7 *******\n";break;
    case6:cout<<"6 ******\n";break;
    case5:cout<<"5 *****\n";break;
    case4:cout<<"4 ****\n";break;
    case3:cout<<"3 ***\n";break;
    case2:cout<<"2 **\n";break;
    case1:cout<<"1 *\n";break;
    case0:cout<<"0 \n";
    }

    //Tens Position
    x-=n100s*100;
    n10s=(x-x%10)/10;
    switch(n10s){
    case9:cout<<"9 *********\n";break;
    case8:cout<<"8 ********\n";break;
    case7:cout<<"7 *******\n";break;
    case6:cout<<"6 ******\n";break;
    case5:cout<<"5 *****\n";break;
    case4:cout<<"4 ****\n";break;
    case3:cout<<"3 ***\n";break;
    case2:cout<<"2 **\n";break;
    case1:cout<<"1 *\n";break;
    case0:cout<<"0 \n";
    }

    //Ones Position
    x-=n10s*10;
    n1s=(x-x%1)/1;
    switch(n1s){
    case9:cout<<"9 *********\n";break;
    case8:cout<<"8 ********\n";break;
    case7:cout<<"7 *******\n";break;
    case6:cout<<"6 ******\n";break;
    case5:cout<<"5 *****\n";break;
    case4:cout<<"4 ****\n";break;
    case3:cout<<"3 ***\n";break;
    case2:cout<<"2 **\n";break;
    case1:cout<<"1 *\n";break;
    case0:cout<<"0 \n";break;
    }

    //Exit Stage Right!
    return0;
    }
    i actually had it organized wrong. it looks like this
     
  6. Jul 12, 2016 at 1:21 PM
    RynoDyno

    RynoDyno Well-Known Member

    Joined:
    Jun 25, 2016
    Member:
    #190495
    Messages:
    209
    Vehicle:
    2016 DCSB
    if you have any ideas pm me
     
  7. Jul 12, 2016 at 1:21 PM
    TPDTaco

    TPDTaco Well-Known Member

    Joined:
    Aug 18, 2015
    Member:
    #162076
    Messages:
    1,087
    Gender:
    Male
    First Name:
    Brett
    Cypress,CA
    Vehicle:
    LT 2011 TRD Sport 4x4 DCLB MGM
    The AAL would be nice but idk if I would need brake lines then..? Im trying my best but I have been on TW a lot today at work need to get some things done ahha I also suck at finding deals.
     
  8. Jul 12, 2016 at 1:23 PM
    RynoDyno

    RynoDyno Well-Known Member

    Joined:
    Jun 25, 2016
    Member:
    #190495
    Messages:
    209
    Vehicle:
    2016 DCSB
    i did AAL and its just enough lift where you wont need extended brake lines. id recommend brake lines if you go full leaf set
     
  9. Jul 12, 2016 at 1:23 PM
    digitaLbraVo

    digitaLbraVo Derka Derka

    Joined:
    Sep 6, 2012
    Member:
    #86398
    Messages:
    7,514
    Covered in stickers and chrome stick-ons for extra horse torques and foot powers. Icon sticker gets me tons of travel, dozens of milimeters.
    If it were PHP or Bash I could help you, my C++ is rusty at best. You can checkout the IT BS Thread, there may be someone in there with some experience?
     
    RynoDyno[QUOTED] likes this.
  10. Jul 12, 2016 at 1:26 PM
    tcBob

    tcBob Gringo Bandito Moderator

    Joined:
    Sep 6, 2006
    Member:
    #1
    Messages:
    15,515
    Gender:
    Male
    First Name:
    Bob
    Vehicle:
    07 PreRunner SR5 V6 Black
    http://www.cplusplus.com/reference/string/string/string/ (look at the fill constructor)

    ...

    std::string(100, '*')
     
  11. Jul 12, 2016 at 1:27 PM
    TPDTaco

    TPDTaco Well-Known Member

    Joined:
    Aug 18, 2015
    Member:
    #162076
    Messages:
    1,087
    Gender:
    Male
    First Name:
    Brett
    Cypress,CA
    Vehicle:
    LT 2011 TRD Sport 4x4 DCLB MGM
    eventually they will be dakars and that will get done. I wonder if i will get good travel out them at this lift. I do a lot of rock crawling(i know not the best vehicle for that) so a lot of flex happens haha I get the tires off the ground a lot
     
  12. Jul 12, 2016 at 1:28 PM
    digitaLbraVo

    digitaLbraVo Derka Derka

    Joined:
    Sep 6, 2012
    Member:
    #86398
    Messages:
    7,514
    Covered in stickers and chrome stick-ons for extra horse torques and foot powers. Icon sticker gets me tons of travel, dozens of milimeters.
    Leaf springs don't flex very well :goingcrazy:
     
    ODNAREM likes this.
  13. Jul 12, 2016 at 1:29 PM
    YotaGurlIAm

    YotaGurlIAm Well-Known Member

    Joined:
    Oct 14, 2015
    Member:
    #166671
    Messages:
    5,160
    Gender:
    Female
    First Name:
    Madison
    Arizona
    Vehicle:
    2008 4.7L - wait..I’m on the wrong forum.
    Stuff n' Thangs
    if you flex a lot, best be on the safe side and extend those brake lines
     
  14. Jul 12, 2016 at 1:29 PM
    RynoDyno

    RynoDyno Well-Known Member

    Joined:
    Jun 25, 2016
    Member:
    #190495
    Messages:
    209
    Vehicle:
    2016 DCSB
    i did AAL without the overload which will allow more flex i believe. its decent for now. but leafs and shock relocate for longer travel shocks i hear are the best way to go
     
  15. Jul 12, 2016 at 1:30 PM
    TPDTaco

    TPDTaco Well-Known Member

    Joined:
    Aug 18, 2015
    Member:
    #162076
    Messages:
    1,087
    Gender:
    Male
    First Name:
    Brett
    Cypress,CA
    Vehicle:
    LT 2011 TRD Sport 4x4 DCLB MGM
    No not at all but neither does IFS... Coil conversion is so expensive and the dakars will flex pretty good for what they are. My problem with this aal is its 2" so am I gonna sit level or be bro-nosed? should I add a small like 1" block?
     
  16. Jul 12, 2016 at 1:30 PM
    RynoDyno

    RynoDyno Well-Known Member

    Joined:
    Jun 25, 2016
    Member:
    #190495
    Messages:
    209
    Vehicle:
    2016 DCSB
  17. Jul 12, 2016 at 1:31 PM
    MadTaco461

    MadTaco461 BRO runner

    Joined:
    Dec 30, 2009
    Member:
    #28470
    Messages:
    13,426
    Gender:
    Male
    First Name:
    Mike
    CA
    Vehicle:
    99 turbo 5 lug long travel
    Kinda stock
    Dmz kit will flex like crazy:devil:
     
    eccracer104 likes this.
  18. Jul 12, 2016 at 1:32 PM
    TPDTaco

    TPDTaco Well-Known Member

    Joined:
    Aug 18, 2015
    Member:
    #162076
    Messages:
    1,087
    Gender:
    Male
    First Name:
    Brett
    Cypress,CA
    Vehicle:
    LT 2011 TRD Sport 4x4 DCLB MGM
    Well I hope to not flex as much anymore because I bought a jeep to mess around in and I can break that lol
     
    YotaGurlIAm[QUOTED] likes this.
  19. Jul 12, 2016 at 1:34 PM
    TPDTaco

    TPDTaco Well-Known Member

    Joined:
    Aug 18, 2015
    Member:
    #162076
    Messages:
    1,087
    Gender:
    Male
    First Name:
    Brett
    Cypress,CA
    Vehicle:
    LT 2011 TRD Sport 4x4 DCLB MGM
    Thats the other problem I have is I tow with the taco so and I am usually like at the limit or above it so I'm like riding bumps almost. I believe the overload helps with that.
     
  20. Jul 12, 2016 at 1:37 PM
    RynoDyno

    RynoDyno Well-Known Member

    Joined:
    Jun 25, 2016
    Member:
    #190495
    Messages:
    209
    Vehicle:
    2016 DCSB
    then id leave it in if i were you. if you tow that overload is a must. i never tow so i didnt mind
     

Products Discussed in

To Top