Tribes 20th Anniversary Weekend by Lyon - Page 14 - TribalWar Forums
Click Here to find great hosting deals from Branzone.com


Go Back   TribalWar Forums > TribalWar Community > General Discussion
Reload this Page Tribes 20th Anniversary Weekend
Page 14 of 17
Thread Tools
groove
VeteranXX
Old
261 - 09-12-2018, 22:58
Reply With Quote
108 pft 4 lyfe
 
groove is offline
 
Sponsored Links
[N]PRIME189
VeteranXX
Old
262 - 09-14-2018, 09:46
Reply With Quote
NOPE - a Starsiege: Tribes tribe
 
[N]PRIME189 is offline
 
groove
VeteranXX
Old
263 - 09-15-2018, 01:07
Reply With Quote
Quote:
Originally Posted by hyung View Post
i think he's asking for a basic config. and i think he makes a good point. there isn't a config on playt1 that isn't extremely customized.
i made an old-timey 1.41 config a few years back, but i have no idea where it is now

 
groove is offline
 
lemon
Sour++
Contributor
Old
264 - 09-15-2018, 23:05
Reply With Quote
oh man coding configs is so hard think of the children
 
lemon is offline
 
Dutch
VeteranXX
Old
265 - 09-16-2018, 05:21
Reply With Quote
is there gonna be another

i wll show up and work on my setup
 
Dutch is offline
 
groove
VeteranXX
Old
266 - 09-16-2018, 12:24
Reply With Quote
Quote:
Originally Posted by lemontw View Post
oh man coding configs is so hard think of the children
wat

hows that x64 config coming along
 
groove is offline
 
Lyon
VeteranXV
Old
267 - 09-16-2018, 16:11
Reply With Quote
base pickup tonight at 8pm est
 
Lyon is offline
 
Deceptikon
VeteranXX
Old
268 - 09-17-2018, 04:25
Reply With Quote
terphitsound.zip - Google Drive

this is a interp/pft script you can do whatever wacky settings you want, drops into groov basic config

this seems to work whatever fine for me, change it to your own settings

I think it might lead to some weirdness when switching weapons? I don't know I use direct binds to switch weapons not next/previous weapon bind so that might be ****ing with it
 
Deceptikon is offline
 
Deceptikon
VeteranXX
Old
269 - 09-17-2018, 04:40
Reply With Quote
also if anyone good with scripts knows how to do this, I used to have a script that I really miss

it would autoswitch to laser rifle and zoom to a custom level, I think I used to keep at 2.8x or somewhere around there - about the level of fov where the t1 engine switches from the reticle to the full crosshairs

I got this script and it works pretty good but it zooms based off your in game zoom setting not a custom one.

Code:
editActionMap("playMap.sae");
bindCommand(keyboard0, make, "lshift", TO, "z0ddzoomsnipe::doSnipe();");
bindCommand(keyboard0, break, "lshift", TO, "z0ddzoomsnipe::unDoSnipe();");

$z0ddzoomsnipe::switchBackToWpn = 0;
$z0ddzoomsnipe::autoCrouch = 0;
$z0ddzoomsnipe::crouchWithoutRifle = 0;
$z0ddzoomsnipe::alwaysZoom = 1;


function psychozoomsnipe::switchback() {
if(getItemCount("Rocket Launcher")) {
use("Rocket Launcher");
}
else if(getItemCount("Disc Launcher")) {
use("Disc Launcher");
}
}


function z0ddzoomsnipe::doSnipe()
{
if(getItemCount("Particle Beam")) {
$z0ddzoomsnipe::ownsLR = 1; 
if($z0ddzoomsnipe::autoCrouch)
postAction(2048, IDACTION_CROUCH, 1);
if($z0ddzoomsnipe::switchBackToWpn)
$z0ddzoomsnipe::prevWpn = z0ddzoomsnipe::getCurrentWpn();
use("Particle Beam");
postAction(2048, IDACTION_SNIPER_FOV, 1.000000);
}
else if(getItemCount("Vulcan")) {
$z0ddzoomsnipe::ownsLR = 1; 
if($z0ddzoomsnipe::autoCrouch)
postAction(2048, IDACTION_CROUCH, 1);
if($z0ddzoomsnipe::switchBackToWpn)
$z0ddzoomsnipe::prevWpn = z0ddzoomsnipe::getCurrentWpn();
use("Vulcan");
postAction(2048, IDACTION_SNIPER_FOV, 1.000000);
}
else if(getItemCount("Railgun")) {
$z0ddzoomsnipe::ownsLR = 1; 
if($z0ddzoomsnipe::autoCrouch)
postAction(2048, IDACTION_CROUCH, 1);
if($z0ddzoomsnipe::switchBackToWpn)
$z0ddzoomsnipe::prevWpn = z0ddzoomsnipe::getCurrentWpn();
use("Railgun");
postAction(2048, IDACTION_SNIPER_FOV, 1.000000);
}
else if(getItemCount("Laser Rifle")) {
$z0ddzoomsnipe::ownsLR = 1; 
if($z0ddzoomsnipe::autoCrouch)
postAction(2048, IDACTION_CROUCH, 1);
if($z0ddzoomsnipe::switchBackToWpn)
$z0ddzoomsnipe::prevWpn = z0ddzoomsnipe::getCurrentWpn();
use("Laser Rifle");
postAction(2048, IDACTION_SNIPER_FOV, 1.000000);
}
else if(getItemCount("Minigun")) {
$z0ddzoomsnipe::ownsLR = 1;
if($z0ddzoomsnipe::autoCrouch)
postAction(2048, IDACTION_CROUCH, 1);
if($z0ddzoomsnipe::switchBackToWpn)
$z0ddzoomsnipe::prevWpn = z0ddzoomsnipe::getCurrentWpn();
use("Minigun");
postAction(2048, IDACTION_SNIPER_FOV, 1.000000);
}
else if(getItemCount("Sniper Rifle")) {
$z0ddzoomsnipe::ownsLR = 1; 
if($z0ddzoomsnipe::autoCrouch)
postAction(2048, IDACTION_CROUCH, 1);
if($z0ddzoomsnipe::switchBackToWpn)
$z0ddzoomsnipe::prevWpn = z0ddzoomsnipe::getCurrentWpn();
use("Sniper Rifle");
postAction(2048, IDACTION_SNIPER_FOV, 1.000000);
}
else {
if($z0ddzoomsnipe::alwaysZoom)
postAction(2048, IDACTION_SNIPER_FOV, 1.000000);
if($z0ddzoomsnipe::crouchWithoutRifle)
postAction(2048, IDACTION_CROUCH, 1);
$z0ddzoomsnipe::ownsLR = 0;
}
}

function z0ddzoomsnipe::unDoSnipe()
{
postAction(2048, IDACTION_SNIPER_FOV, 0.000000);
postAction(2048, IDACTION_STAND, 1); 
if($z0ddzoomsnipe::ownsLR) {
if($z0ddzoomsnipe::switchBackToWpn)

psychozoomsnipe::switchback();
}
}
 
Deceptikon is offline
 
Notorious
VeteranXX
Old
270 - 09-17-2018, 14:31
Reply With Quote
hi
 
Notorious is offline
 
coombz
VeteranXX
Old
271 - 09-17-2018, 14:48
Reply With Quote
zodsnipe.cs

goat script for LD snipers
 
coombz is offline
 
MiNiOn
VeteranXX
Old
272 - 09-17-2018, 20:12
Reply With Quote
**** I'm old.
 
MiNiOn is offline
 
lemon
Sour++
Contributor
Old
273 - 09-17-2018, 23:06
Reply With Quote
Quote:
Originally Posted by Groove View Post
wat

hows that x64 config coming along
If u ask me nicely I'll finish it for u brah

what scripts do u want

I've almost got a radarhud hacked in
 
lemon is offline
 
hyung
VeteranXX
Old
274 - 09-18-2018, 01:17
Reply With Quote
Quote:
Originally Posted by Groove View Post
i made an old-timey 1.41 config a few years back, but i have no idea where it is now

this is amazing and perfect! i feel like there's a lot of demand for something like this
 
hyung is offline
 
hyung
VeteranXX
Old
275 - 09-18-2018, 01:17
Reply With Quote
Quote:
Originally Posted by Dutch View Post
is there gonna be another

i wll show up and work on my setup
i think these are going to continue indefinitely, at least until the anniversary weekend!
 
hyung is offline
 
lemon
Sour++
Contributor
Old
276 - 09-20-2018, 20:33
Reply With Quote
Quote:
Originally Posted by hyung View Post
this is amazing and perfect! i feel like there's a lot of demand for something like this
ROFL IT'S JUST STOCK WITH ANDREWS CTF HUD

WE HAVE COME FULL CIRCLE
 
lemon is offline
 
hyung
VeteranXX
Old
277 - 09-20-2018, 21:43
Reply With Quote
thats what im saying tho

why isnt there a stock config on the website?
 
hyung is offline
 
The-ill-man
VeteranXV
Contributor
Old
278 - 09-20-2018, 22:24
Reply With Quote
is there any script to split the chat with the game events or whatever like kills etc?
 
The-ill-man is offline
 
groove
VeteranXX
Old
279 - 09-20-2018, 22:48
Reply With Quote
font isn't stock either

i based it off a screenshot of andrews 5k config or whatever it was, so i used the same font and andrews ctfhud icons

but that font is super hard to read when u get up to high resolutions
 
groove is offline
 
Lyon
VeteranXV
Old
280 - 09-21-2018, 02:26
Reply With Quote
Quote:
Originally Posted by The-ill-man View Post
is there any script to split the chat with the game events or whatever like kills etc?
yeah, stork's config definitely has that and i think groove's does too. no idea where it is setup though.
 
Lyon is offline
 
Page 14 of 17
Reply


Go Back   TribalWar Forums > TribalWar Community > General Discussion
Reload this Page Tribes 20th Anniversary Weekend

Social Website Bullshit

Tags
20th anniversary , reunion , tournament , tribes , tribes 1


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off


AGENT: claudebot / Y
All times are GMT -4. The time now is 12:26.