[T1] Modding

Pages : [1] 2

XxMarlboroManxX
11-03-2002, 05:21 AM
Can anyone help me code something for a bullet projectile. What i want is for it to Repair friendly players And turrets etc.. kill enemy players, and turrets etc..

Reverend Zero
11-03-2002, 05:25 AM
No.

XxMarlboroManxX
11-03-2002, 06:35 AM
Why the hell not

Gambitx11x
11-03-2002, 11:59 AM
Yea sure do u use IRC , AIM , ICQ ??? IF u use IRC where do u idle and AIM s/n ICQ ur #...

KOS
11-03-2002, 05:57 PM
Originally posted by Reverend Zero
No.

Originally posted by XxMarlboroManxX
Why the hell not

because
a) mods are gay
b) the LAST thing tribes needs is another one
c) play base

Gambitx11x
11-03-2002, 06:07 PM
I dont care if i get bitched at but not everyone likes base. MODS are better now cause most of the people in base are fucking n00bs who o sniper and rape when its 3 v 3.

random
11-03-2002, 08:52 PM
xranDomx reporting for renegades duty

Ambient7
11-03-2002, 08:53 PM
Originally posted by random
xranDomx reporting for renegades duty

:lol:

Hindsight
11-03-2002, 09:01 PM
Originally posted by Gambitx11x
I dont care if i get bitched at but not everyone likes base. MODS are better now cause most of the people in base are fucking n00bs who o sniper and rape when its 3 v 3. its true, that raping is getting out of hand for the number of people pleying | but its also true that renegades and such are gay

Gambitx11x
11-03-2002, 09:09 PM
renegades yea... but not stuff like fstat and bwadmin.. those are the only things i play... (kill tacker and screenie with VP3.3)

Shinigami
11-03-2002, 09:12 PM
bwadmin is slow as hell and fstats are euro ;\

Gambitx11x
11-03-2002, 09:13 PM
yea i know.. thats why i play there

Ragnafrak
11-03-2002, 09:21 PM
anyone who can't enjoy clustering when it's below 8v8 doesn't deserve to play base

Shinigami
11-03-2002, 09:23 PM
Originally posted by Ragnafrak
anyone who can't enjoy clustering when it's below 8v8 doesn't deserve to play base

I can agree with them to an extent (depending on the map), but still if they play on the right servers, rape shouldn't be an issue.

Gambitx11x
11-03-2002, 09:24 PM
Why? I think is stupid when its 3 v 3 and a fucking HO comes to ur base on like raind dance and sits up in top and turtles and spams. Im my opinion thats a fucking n00b. I mean im fine when its like 7 v 7 or 6 on 6 but i mean ppl are sitting there doing it in a 3 v 3. You gotta admitt if some HO spammed ur base in RD with a 3 v 3 ud be pissed

Ragnafrak
11-03-2002, 09:41 PM
Originally posted by Gambitx11x
Why? I think is stupid when its 3 v 3 and a fucking HO comes to ur base on like raind dance and sits up in top and turtles and spams. Im my opinion thats a fucking n00b. I mean im fine when its like 7 v 7 or 6 on 6 but i mean ppl are sitting there doing it in a 3 v 3. You gotta admitt if some HO spammed ur base in RD with a 3 v 3 ud be pissed i hardly ever gear up on most RD/RC/DX/SH, besides the guy will run out of mortars and mines, after that he's done

KOS
11-03-2002, 11:00 PM
well now that really depends

if your flag carrier goes inside your base... u deserve whatever they throw at you

keep the flag carrier OUTSIDE the fucking base and theres no problem, if they rape, THEN you can get pissed at them

besides... it takes a total of maybe 3 mins to clear a HO camping in ur base, just throw urself at him many times and you will win

XxMarlboroManxX
11-04-2002, 01:29 AM
Damn this thread got popular quick like....

Aim Messanger: dustin8420

ICQ#: 166575040

IRC: [TG]-X-Ecutioner <im usually not on here but if i am im onm the #TRIBES one.

Im allmost allways on aim and icq



for the record i do like and play allmost any mod. i wont play base bcause its jsut boring...U get like 3 armors, probly 5 weapons. and your lucky to lay a turret, its been so long since i've played that mod(sorry i know, its not a mod) i dont even know if you can lay a turret.
*Braces for impact from base lovers throwing bricks at him*

Hindsight
11-04-2002, 06:42 AM
5 weapons :rolleyes:

XxMarlboroManxX
11-04-2002, 06:49 AM
Sorry, like i said i havn't played it in 4 ever...
Anyway this is what im leaning towards for this gun..
This is not working btw.

function RepairBullet::damageTarge t(%target, %timeSlice, %damPerSec, %enDrainPerSec, %pos, %vec, %mom, %shooterId)
{
if(GameBase::getTeam(%tar get) == GameBase::getTeam(%shoote rId))
{
GameBase::setDamagelevel( %target,0);
return;
}

if(GameBase::getTeam(%tar get) != GameBase::getTeam(%shoote rId))
{
GameBase::applyDamage(%ta rget, $BulletDamageType, 10, %pos, %vec, %mom, %shooterId);
return;
}
}
Not exactly sure on what im supposed to add to the onDamage function in player.cs but this is what i put in there...
if(%type == $RepairBullet)
{
RepairBullet::damageTarge t(%this, 0, 0, 0, %pos, %vec, %mom, %object);
}