Jump to content

  •  

  • iBotModz CBox


    Photo

    Portal Modding?


    • Please log in to reply
    24 replies to this topic

    #21 amcboi95

    amcboi95

      Corporal Grade 1

    • Members+

    • 150 posts
    • Joined: 05-June 08
    • Gender:Male

    Posted 05 February 2009 - 07:04 PM

    lol, try removing updates to the game that might be why its corrupt.

    Seriously?
    If it is then just go ahead and shoot me now... lol

    #22 GLITCH902

    GLITCH902

      Apprentice Grade 2

    • Members+

    • 11 posts
    • Joined: 27-August 08

    Posted 14 February 2009 - 09:03 PM

    Check out GameTuts on YouTube.com

    #23 Korupt Data

    Korupt Data

      SoOoO KoRuPtAbLe

    • Retired Staff

    • 3,503 posts
    • Joined: 12-May 08
    • Gender:Male
    • Location:That file you downloaded

    Posted 14 February 2009 - 09:26 PM

    Check out GameTuts on YouTube.com

    Whats that have to do with this topic?
    advertise in your sig not in posts.

    #24 krackish

    krackish

      Recruit

    • Members

    • 1 posts
    • Joined: 16-February 09

    Posted 22 February 2009 - 02:49 AM

    Gametuts has a program called modio that mods orange box it works great and is easy to use

    #25 miinaturvat

    miinaturvat

      miiinaturvat

    • Donors+

    • 927 posts
    • Joined: 09-April 08
    • Gender:Male
    • Location:Dragon Shores!

    Posted 28 February 2009 - 04:46 PM

    I made my own code for modding portal that I use all the time.

    Here it is:

    unbindall
    alias "sv1" "sv_cheats 1"
    alias "sv0" "sv_cheats 0"
    alias "nc" "noclip"
    alias "im" "impulse 101"
    alias "v0" "firstperson"
    alias "v1" "thirdperson"
    alias "w1" "mat_wireframe 1"
    alias "w0" "mat_wireframe 0"
    alias "gd" "god"

    alias "npc1" "npc_create npc_headcrab"
    alias "npc2" "npc_create npc_zombie"
    alias "npc3" "npc_create npc_fastzombie"
    alias "npc4" "npc_create npc_poisonzombie"
    alias "th1" "ent_create_portal_weight_box"
    alias "th2" "ent_create_portal_metal_sphere"
    alias "th3" "ent_create rocket_turret_projectile"
    alias "th4" "fire_energy_ball"

    alias "ob1" "impulse 203"
    alias "ob2" "impulse 82"
    alias "ob3" "impulse 83"

    alias "svtgl" "svt1"
    alias "svt1" "sv1; alias svtgl svt2"
    alias "svt2" "sv0; alias svtgl svt1"

    alias "vtgl" "vt1"
    alias "vt1" "v1; alias vtgl vt2"
    alias "vt2" "v0; alias vtgl vt1"

    alias "wtgl" "wt1"
    alias "wt1" "w1; alias wtgl wt2"
    alias "wt2" "w0; alias wtgl wt1"

    alias "rsbtns" "bind A_BUTTON +jump; bind B_BUTTON toggle_duck; bind X_BUTTON +xbut; bind Y_BUTTON +ybut; bind STICK1 toggle_duck; bind STICK2 +use; bind UP slot1; bind RIGHT slot2; bind DOWN slot3; bind LEFT slot4; bind S1_UP xmove; bind L_TRIGGER +attack2; bind R_TRIGGER +attack; bind S2_UP xlook; bind L_SHOULDER +jump; bind R_SHOULDER +jump"

    alias "+backbut" "bind UP svtgl; bind DOWN nc; bind R_TRIGGER im; bind LEFT vtgl; bind RIGHT wtgl; bind L_TRIGGER gd"
    alias "-backbut" "rsbtns"
    alias "+xbut" "bind UP npc1; bind DOWN npc2; bind LEFT npc3; bind RIGHT npc4; bind L_SHOULDER th2; bind R_SHOULDER th1; bind L_TRIGGER th4; bind R_TRIGGER th3; bind A_BUTTON w1"
    alias "-xbut" "rsbtns"
    alias "+ybut" "bind UP ob1; bind LEFT ob2; bind RIGHT ob3"
    alias "-ybut" "rsbtns"

    bind "A_BUTTON" "+jump"
    bind "X_BUTTON" "+xbut"
    bind "Y_BUTTON" "+ybut"
    bind "STICK1" "toggle_duck"
    bind "STICK2" "+use"
    bind "UP" "slot1"
    bind "RIGHT" "slot2"
    bind "DOWN" "slot3"
    bind "LEFT" "slot4"
    bind "S1_UP" "xmove"
    bind "L_TRIGGER" "+attack2"
    bind "R_TRIGGER" "+attack"
    bind "S2_UP" "xlook"
    bind "BACK" "+backbut"
    cl_rumblescale "1"
    cc_subtitles "0"
    joy_pitchsensitivity "-1.0"
    joy_yawsensitivity "-1.25"
    joy_inverty "0"
    joy_inverty_default "0"
    joy_movement_stick_default "0"
    joy_movement_stick "0"
    hud_fastswitch "2"
    sk_allow_autoaim "1"
    sv_stickysprint "0"
    sv_player_funnel_into_portals "1"
    closecaption "0"
    skill "1"
    mm_hosted_games "0"
    mm_hosted_games_dropped "0"
    sv_unlockedchapters "10"
    volume "1.0"
    snd_musicvolume "1.0"


    And here is what does what:

    BACK and UP - Toggle sv_cheats
    BACK and DOWN - Toggle noclip
    BACK and LEFT - Switch Between First And Third Person View
    BACK and RIGHT - Toggle Wireframe Mode

    BACK and LT - Toggle God Mode
    BACK and RT - Give all weapons


    X and UP - Spawn A Live Headcrab
    X and DOWN - Spawn A Zombie
    X and LEFT - Spawn A "Fast Zombie"
    X and RIGHT - Spawn A Zombie That Tosses Poison Headcrabs From It's Back

    X and LB - Spawn Bouncy Metal Ball
    X and LT - Fire Energy Ball From Your Face

    X and RB - Spawn Storage Cube
    X and RT - Fire Rocket From Your Face

    Y and UP - Delete Object Or NPC That You're Aiming At


    Use this to help you understand more about modding portal if you like.