• Script Help
    9 replies, posted
hey guys, i really want some script but i have no idea how to make them working. the ones i want are the Highjump script and the demoman fast sticky script. if you cant find them i can always post a link but i think they are very easy to find. but i have no idea how to make them work :(
You mean using commands? Try TF2Wiki or FPSBanana, the best are there.
This should help [url]http://www.tf2wiki.net/wiki/Scripting[/url]
Sorry to go a little off topic, but can anyone help me make a autoexec? mp_usehwmmodels 1 mp_usehwmvcds 1 cl_new_impact_effects 1 cl_burninggibs 1 r_lod 0 cl_ragdoll_fade_time 120 r_eyeglintlod_pixels 12 Or if everyone is too lazy I'll eventually work it out myself. [editline]08:37PM[/editline] Should this work? [code]// Simple autoexuc setup made by Slickblade (Facepunch.com) or Boot (Steam) // Contains few commands invluding making gibs burn, glass, wood and tile shatter when shot, and remove levelofdetail, which prevents finger/face posing at a certain range // Feel free to edit it to your liking mp_usehwmmodels"1" mp_usehwmvcds"1" cl_new_impact_effects"1" cl_burninggibs"1" cl_ragdoll_fade_time"120" r_lod"0" r_eyeglintlod_pixels"12" clear echo "Boot's Basic Personal Autoexuc File Loaded"[/code]
[QUOTE=SlickBlade;22656016]Sorry to go a little off topic, but can anyone help me make a autoexec? mp_usehwmmodels 1 mp_usehwmvcds 1 cl_new_impact_effects 1 cl_burninggibs 1 r_lod 0 cl_ragdoll_fade_time 120 r_eyeglintlod_pixels 12 Or if everyone is too lazy I'll eventually work it out myself. [editline]08:37PM[/editline] Should this work? [code]// Simple autoexuc setup made by Slickblade (Facepunch.com) or Boot (Steam) // Contains few commands invluding making gibs burn, glass, wood and tile shatter when shot, and remove levelofdetail, which prevents finger/face posing at a certain range // Feel free to edit it to your liking mp_usehwmmodels"1" mp_usehwmvcds"1" cl_new_impact_effects"1" cl_burninggibs"1" cl_ragdoll_fade_time"120" r_lod"0" r_eyeglintlod_pixels"12" clear echo "Boot's Basic Personal Autoexuc File Loaded"[/code][/QUOTE] You don't need quotation marks, and you need to space it. [code]// Simple autoexuc setup made by Slickblade (Facepunch.com) or Boot (Steam) // Contains few commands invluding making gibs burn, glass, wood and tile shatter when shot, and remove levelofdetail, which prevents finger/face posing at a certain range // Feel free to edit it to your liking mp_usehwmmodels 1 mp_usehwmvcds 1 cl_new_impact_effects 1 cl_burninggibs 1 cl_ragdoll_fade_time 120 r_lod 0 r_eyeglintlod_pixels 12 clear echo "Boot's Basic Personal Autoexuc File Loaded"[/code] This would work fine.
[QUOTE=SGTNAPALM;22656393]You don't need quotation marks, and you need to space it. [code]// Simple autoexuc setup made by Slickblade (Facepunch.com) or Boot (Steam) // Contains few commands invluding making gibs burn, glass, wood and tile shatter when shot, and remove levelofdetail, which prevents finger/face posing at a certain range // Feel free to edit it to your liking mp_usehwmmodels 1 mp_usehwmvcds 1 cl_new_impact_effects 1 cl_burninggibs 1 cl_ragdoll_fade_time 120 r_lod 0 r_eyeglintlod_pixels 12 clear echo "Boot's Basic Personal Autoexuc File Loaded"[/code] This would work fine.[/QUOTE] Ah, thanks
yeah thx for the site but my english isnt very great so most of the words i dont undertand :( i already have an autoexec.cfg (with highfps thing) so if i want to get extra thing i put it in there ? so for example for the highjump thing i put this in the autoexec : //Highjump alias "+jumpeh" "+jump; +duck" alias "-jumpeh" "-duck; -jump" bind "space" "+jumpeh" and for the demo one this : // bind mouse1 +primary bind mouse2 +secondary alias "+secondary" "-reload;alias s_repit +s_repit;+s_repit;alias -p_repit primary2" alias "s_repit" "+s_repit" alias "+s_repit" "+attack2; wait 2; -s_repit" alias "-s_repit" "-attack2; wait 10; s_repit" alias "-secondary" "alias s_repit none;alias -p_repit primary1;+reload" alias none "" alias "+primary" "alias a_reload a_reload2;-reload;wait;alias +p_repit p_r1;alias p_repit +p_repit;+p_repit" alias "p_repit" "+p_repit" alias "+p_repit" "p_r1" alias "-p_repit" "p_repit" alias "-primary" "-attack;alias p_repit none;alias +p_repit p_r2;alias a_reload a_reload1;wait 10;a_reload" alias p_r1 "+attack;wait 3;-p_repit" alias p_r2 "-attack" alias a_reload a_reload2 alias a_reload1 "+reload" alias a_reload2 "-reload" alias primary1 "p_repit" alias primary2 "-attack;wait 3;p_repit" [editline]11:26AM[/editline] oh and i also would like this one : Alias "shoot" "stickyRep" alias "stickyRep" "+attack; wait 5; -attack; wait 30; shoot" alias "stopShoot" "alias shoot nocmd" alias "+sticky" "alias shoot stickyRep; shoot" alias "-sticky" "stopShoot" bind "MOUSE3" "+sticky" but i dont know if its already in the demo one i posted earlier [editline]12:20PM[/editline] Anyone?!?!?!
????? "and for the demo one" Do you mean config specifically for the demoman? put it in demoman.cfg
[QUOTE=Shounic;22657803]????? "and for the demo one" Do you mean config specifically for the demoman? put it in demoman.cfg[/QUOTE] okay i will try that, but i have 2 demoman scripts think they can go together??
[QUOTE=Xynizzz;22657895]okay i will try that, but i have 2 demoman scripts think they can go together??[/QUOTE] If neither of them uses the same binds then it will be fine. for example: Bad = [code] (script 1) "bind MOUSE2 +jump; +crouch" (script 2) "bind MOUSE2 +attack; +reload" [/code] Good = [code] (script 1) "bind MOUSE2 +cloak; +disguise" (script 2) "bind MOUSE1 +attack2; +left" [/code] Also, your scripts doesn't have to be two commands or two commands only. these are only examples. Just don't use the same binds and aliases.
Sorry, you need to Log In to post a reply to this thread.