Gamestudio Links
Zorro Links
Newest Posts
Zorro 2.70
by jcl. 09/29/25 09:24
optimize global parameters SOLVED
by dBc. 09/27/25 17:07
ZorroGPT
by TipmyPip. 09/27/25 10:05
assetHistory one candle shift
by jcl. 09/21/25 11:36
Plugins update
by Grant. 09/17/25 16:28
AUM Magazine
Latest Screens
Rocker`s Revenge
Stug 3 Stormartillery
Iljuschin 2
Galactic Strike X
Who's Online Now
0 registered members (), 18,435 guests, and 5 spiders.
Key: Admin, Global Mod, Mod
Newest Members
krishna, DrissB, James168, Ed_Love, xtns
19168 Registered Users
Previous Thread
Next Thread
Print Thread
Rate Thread
Page 3 of 3 1 2 3
Re: PARKOUR - GAME [Re: croman] #243026
12/27/08 08:35
12/27/08 08:35
Joined: Dec 2008
Posts: 93
YOU AINT GONNA NEED THAT!
M
MAGA Offline OP
Junior Member
MAGA  Offline OP
Junior Member
M

Joined: Dec 2008
Posts: 93
YOU AINT GONNA NEED THAT!
Thanks dude. I'll do my best, I'll try to animate in Milkshape.

Re: PARKOUR - GAME [Re: MAGA] #244512
01/05/09 08:25
01/05/09 08:25
Joined: Dec 2008
Posts: 93
YOU AINT GONNA NEED THAT!
M
MAGA Offline OP
Junior Member
MAGA  Offline OP
Junior Member
M

Joined: Dec 2008
Posts: 93
YOU AINT GONNA NEED THAT!
I'll try to create it with DiverseMovement code. It's realy awesome script.

Re: PARKOUR - GAME [Re: MAGA] #265483
05/12/09 17:45
05/12/09 17:45
Joined: May 2009
Posts: 3
sdadsadsadsadsasda
S
sdadsadssadsad Offline
Guest
sdadsadssadsad  Offline
Guest
S

Joined: May 2009
Posts: 3
sdadsadsadsadsasda
sada

Re: PARKOUR - GAME [Re: sdadsadssadsad] #265484
05/12/09 17:46
05/12/09 17:46
Joined: May 2009
Posts: 3
sdadsadsadsadsasda
S
sdadsadssadsad Offline
Guest
sdadsadssadsad  Offline
Guest
S

Joined: May 2009
Posts: 3
sdadsadsadsadsasda
sdadsadssadsad

Re: PARKOUR - GAME [Re: croman] #265485
05/12/09 17:48
05/12/09 17:48
Joined: May 2009
Posts: 3
sdadsadsadsadsasda
S
sdadsadssadsad Offline
Guest
sdadsadssadsad  Offline
Guest
S

Joined: May 2009
Posts: 3
sdadsadsadsadsasda
#define _movemode, skill6;
#define MY_MOVEMODE_STAY, 0;
#define MY_MOVEMODE_RUN, 1;
#define MY_MOVEMODE_PULLUP, 2;
VECTOR* my_vec_temp = {x=0; y=0; z=0;}
function my_player()
{
var v_temp = 0;
// do some initialisation here
while(1)
{
if ((my._movemode != MY_MOVEMODE_PULLUP) && (key_cuu)) // key_cuu can be replaced with other inputs
{
// first trace at the center of your player..
vec_set(my_vec_temp.x, my.x);
my_vec_temp.x += 3;
vec_rotate(my_vec_temp.x, my.pan);
you = NULL;
v_temp = c_trace(my.x, my_vec_temp.x, IGNORE_ME | IGNORE_PASSABLE);
if ((v_temp <= 3) && (v_temp > 0) && (you == NULL))
{
// second trace on shoulder height...
vec_set(my_vec_temp.x, my.x);
my_vec_temp.x += 3;
my_vec_temp.z += 5; // replace this value with the optimal shoulder height of your model
vec_rotate(my_vec_temp.x, my.pan);
you = NULL;
v_temp = c_trace(my.x, my_vec_temp.x, IGNORE_ME | IGNORE_PASSABLE);
if ((v_temp == 0) && (you == NULL))
{
my._movemode = MY_MOVEMODE_PULLUP;
}
}
}

my_player_move();
my_player_animate(); // after animation is done set in this function the my._movemode back to MY_MOVEMODE_STAY
my_camera_move();
wait(1);
}
}

Page 3 of 3 1 2 3

Moderated by  George 

Gamestudio download | Zorro platform | shop | Data Protection Policy

oP group Germany GmbH | Birkenstr. 25-27 | 63549 Ronneburg / Germany | info (at) opgroup.de

Powered by UBB.threads™ PHP Forum Software 7.7.1