Page 1 of 1

player sizes

Posted: Tue Oct 04, 2005 7:33 pm
by JUDGE
hi all at .map
quick question i can down scale models but how to i down scale a player in a script trying to get him about 0.11 scale?

ive tryed scaling down the player in the tik file by placing "scale 0.11"
just under tiki but doesnt work.

:D

Posted: Tue Oct 04, 2005 8:02 pm
by jv_map
Place it in the 'setup' section.

Posted: Fri Dec 16, 2005 4:48 am
by kkcahdcakcyt
anyway to change player sizes from a .scr
basically to do toy soldiers type thing.

Posted: Fri Dec 16, 2005 5:40 pm
by Green Beret
I think its player scale .5

Posted: Fri Dec 16, 2005 10:55 pm
by kkcahdcakcyt
I'm doing this for Multiplayer

for (local.z=$player.size; local.z > 0; local.z--)
{
$player[local.z] scale .5
}

except this doesn't seem to work.

Posted: Sat Dec 17, 2005 3:44 am
by GiffE1118
kkcahdcakcyt wrote:I'm doing this for Multiplayer

for (local.z=$player.size; local.z > 0; local.z--)
{
$player[local.z] scale .5
}

except this doesn't seem to work.
you cannot notice a difference in the view of a sclaed down player they still see at a high level but their bodies are tiny. u can either try with 2 players or swithc to 3rd person

i also prefer going up in the player.size like

Code: Select all

for (local.i=0; local.i <= $player.size; local.i++)
{ $player[local.i].scale = .5 }
(getting rusty at moh, its either 0 or 1 the indexing starts at...)
but either way works

try the 3rd person or 2 players. the code should work

Posted: Sat Dec 17, 2005 4:18 am
by kkcahdcakcyt
ah...that would probably be it, how would i do 3rd person?
is that a mod i would have to download.

3rd person

Posted: Sun Dec 18, 2005 6:47 am
by tltrude
This line turns it on:

setcvar cg_3rd_person 1

This line turns it off:

setcvar cg_3rd_person 0