Author Topic: Hello everyone. Help me please.  (Read 3493 times)

0 Members and 1 Guest are viewing this topic.

Loki

  • Goblin Pup
  • *
  • Posts: 4
  • Reputation: +0/-0
Hello everyone. Help me please.
« on: November 14, 2004 02:44 am CST »
hey, its my first time here, and i think ill make my presence known by announcing my problems.

i need to make an race for tribes that acts as a normal human, but is faster, jumps higher, and has no fall damage. how would i go about doing this?

-Loki.
« Last Edit: December 31, 1969 06:00 pm CST by Loki »

Lidge Farkley

  • Uber Menace
  • *******
  • Posts: 1,357
  • Reputation: +2/-3
    • http://www.angelfire.com/ca2/psychosworld2/
(No subject)
« Reply #1 on: November 14, 2004 04:59 am CST »
Just use the DK Armor (as in tribes type armor, not rpg type armor) built in...

Or make your own based off of the DK armor.  (DK=death knight)

I don't remember where to find the info for this armor, though.
« Last Edit: December 31, 1969 06:00 pm CST by Lidge Farkley »
Lend your heart unto the divine mineral TOPAZ;
from which our reverent hearts and minds sprang.
Also Known As:  Alcoholic 007
My Page of tribes Tools and Helpful "FAQ" Stuff

UnderGod

  • Centurian Lord
  • ********
  • Posts: 2,691
  • Reputation: +0/-0
(No subject)
« Reply #2 on: November 14, 2004 09:21 am CST »
enemyarmors.cs is the place to look(I can't believe I remember this).

Just follow through. You shouldn't have any problems and just ask if you do.
« Last Edit: December 31, 1969 06:00 pm CST by UnderGod »
"The right man in the wrong place can make all the difference in the world"

Loki

  • Goblin Pup
  • *
  • Posts: 4
  • Reputation: +0/-0
(No subject)
« Reply #3 on: November 14, 2004 01:06 pm CST »
oh, maybe i should have explained better... the new race is supposed to be on team 0 also... i want it to be like a normal player. and the DK thing, ive tried that but i dont know where it all goes to... i copied the entire DK thing, changed the names and the jump/move/jet stuff, and then tried to edit the stuff in RPGfunk. i got the race to exist, but you appear as a Ruffian (the big harmor grey guys) and all you do is run a bit better. and i dont understand this because i copied the line from the human race, "rpgmalehuman" or something like that, into both the places i found it, and it didnt work.
« Last Edit: December 31, 1969 06:00 pm CST by Loki »

Razore

  • Centurian Lord
  • ********
  • Posts: 2,116
  • Reputation: +1/-1
    • http://chaoko.tripod.com
(No subject)
« Reply #4 on: November 14, 2004 01:14 pm CST »
Take the easy way out. Make 3 items that you cant drop, steal, or unequip, and make them have the properties that let you jump, run faster, and take no fall damage! :)
« Last Edit: December 31, 1969 06:00 pm CST by Razore »

xRazorex: Yo
BlAcKIcE398: wtf u got me killed newb
BlAcKIcE398: block
BlAcKIcE398 signed off at 3:49:05 PM.

Hersh

  • Elvin Legion
  • *****
  • Posts: 413
  • Reputation: +0/-0
(No subject)
« Reply #5 on: November 14, 2004 01:46 pm CST »
$Server::teamName[0] = "Citizen";
$Server::teamSkin[0] = "rpgbase";
 
I was going to tell you to make sure your skin is set to one of the human ones, but I just realized something, there is no human skin for heavy armor.

(So you'll need to make it a light armor body.)
« Last Edit: December 31, 1969 06:00 pm CST by Hersh »

I kissed a drunk girl on the lips.
This post, by its very length, defends itself against the risk of being read.

Lidge Farkley

  • Uber Menace
  • *******
  • Posts: 1,357
  • Reputation: +2/-3
    • http://www.angelfire.com/ca2/psychosworld2/
(No subject)
« Reply #6 on: November 14, 2004 08:47 pm CST »
^ I agree.
« Last Edit: December 31, 1969 06:00 pm CST by Lidge Farkley »
Lend your heart unto the divine mineral TOPAZ;
from which our reverent hearts and minds sprang.
Also Known As:  Alcoholic 007
My Page of tribes Tools and Helpful "FAQ" Stuff

UnderGod

  • Centurian Lord
  • ********
  • Posts: 2,691
  • Reputation: +0/-0
(No subject)
« Reply #7 on: November 14, 2004 10:16 pm CST »
Just because it is in enemyarmors.cs doesn't mean it has to be an enemy. That is just a filename..
« Last Edit: December 31, 1969 06:00 pm CST by UnderGod »
"The right man in the wrong place can make all the difference in the world"

Loki

  • Goblin Pup
  • *
  • Posts: 4
  • Reputation: +0/-0
(No subject)
« Reply #8 on: November 15, 2004 12:03 am CST »
really? ok. and i didnt want it to be heavy armor in the first place. but none of that matters, because i still need to know HOW to make it. thats what i was asking in the first place =P
« Last Edit: December 31, 1969 06:00 pm CST by Loki »

Hersh

  • Elvin Legion
  • *****
  • Posts: 413
  • Reputation: +0/-0
(No subject)
« Reply #9 on: November 15, 2004 06:12 pm CST »
Quote from: "Loki"
i got the race to exist, but you appear as a Ruffian (the big harmor grey guys) and all you do is run a bit better. and i dont understand this because i copied the line from the human race, "rpgmalehuman" or something like that, into both the places i found it, and it didnt work.


Change the armor to whatever the light armor type is called. I don't understand what your having trouble with if you got this far.

To make it run/jump faster play with these lines...

 
Code: [Select]
maxJetSideForceFactor = 1;
maxJetForwardVelocity = 1.0;
minJetEnergy = 60;
jetForce = 1;
jetEnergyDrain = 0.0;

maxDamage = 1.0;
maxForwardSpeed = $spdmed;
maxBackwardSpeed = $spdmed * 0.8;
maxSideSpeed = $spdmed * 0.75;

groundForce = 75 * 9.0;
mass = 9.0;
groundTraction = 3.0;
maxEnergy = 60;
drag = 1.0;
density = 1.2;

minDamageSpeed = 16;
damageScale = $damageScale;

jumpImpulse = 75;
jumpSurfaceMinDot = $jumpSurfaceMinDot;
« Last Edit: December 31, 1969 06:00 pm CST by Hersh »

I kissed a drunk girl on the lips.
This post, by its very length, defends itself against the risk of being read.

Loki

  • Goblin Pup
  • *
  • Posts: 4
  • Reputation: +0/-0
(No subject)
« Reply #10 on: November 15, 2004 08:21 pm CST »
whoa, what did u get that from?

and what im thaving trouble with is getting it to work correctly... and on top of that, isnt the armor info in more than one file?
« Last Edit: December 31, 1969 06:00 pm CST by Loki »