Flyff Login Video

06/04/2013 11:30 raventh1984#1
Hi elitepvpers,

I am working on the flyff login video.
However i only see air.

So i did this
I opend WdMadrigal in beast and i used the positions from there

These are my positions

x=6976.492188
y=132.490585
z=3479.496094

Now i opend up ITheme.cpp and changed this

D3DXVECTOR3 vecWorld(128.0f, 128.0f, 128.0f);
To this
D3DXVECTOR3 vecWorld(6976.0f, 132.0f, 3479.0f);

Still it only shows me air instead of the flaris.

Anyone got an solution to this?
06/04/2013 12:32 Velmore#2
Perhaps you see the ground increase the y value
06/04/2013 12:35 raventh1984#3
Thanks velmore but i found it.

static const float START_X = 6948.0f;
static const float END_X = 7210.0f;
static const float START_TO_END_X = END_X - START_X;
static const float START_Y = 152.0f;
static const float END_Y = 100.0f;
static const float START_TO_END_Y = END_Y - START_Y;
static const float START_Z = 3320.0f;
static const float END_Z = 3500.0f;
static const float START_TO_END_Z = END_Z - START_Z;
static const float SPEED_RATE = 500.0f;

Here is the camera control

#closerequest
06/04/2013 14:04 Velmore#4
the y position is here
D3DXVECTOR3 vecWorld(6976.0f, 132.0f, 3479.0f);

the float value in the middle is the y value
06/04/2013 17:02 raventh1984#5
Yes i was aware of that. But i needed to change the camera position to where it would start and where it would end. So this is solved :D.
06/04/2013 18:27 Reavern#6
#closed