Search found 8 matches

by owen_a
Sat Mar 24, 2012 11:31
Forum: Problems
Topic: Removing health off player?
Replies: 7
Views: 2410

Well... Anyone?
by owen_a
Fri Mar 23, 2012 16:50
Forum: Problems
Topic: Removing health off player?
Replies: 7
Views: 2410

Sure, give me a minute to root it out. EDIT: Right, this is what I have. // Water resistance if(lplayer->in_water_stable || lplayer->in_water) { f32 max_down = 2.0*BS; if(speed.Y < -max_down) speed.Y = -max_down; f32 max = 2.5*BS; if(speed.getLength() > max) { speed = speed / speed.getLength() * max...
by owen_a
Tue Mar 20, 2012 17:18
Forum: Problems
Topic: Removing health off player?
Replies: 7
Views: 2410

Removing health off player?

Hello, I'm creating something which counts down from 15 seconds if a player is underwater, and then once that time is over, it deducts -1 off there health until they come back up to surface or die. The only problem I'm facing is getting it to link from one file to the environment file. For example.....
by owen_a
Sat Mar 17, 2012 16:23
Forum: Problems
Topic: Link Error - 'stlport_static.lib'
Replies: 10
Views: 2921

The only real error I'm getting now is when I begin to load minetest up, it complains about missing about "libintl3.dll" is missing. Any ideas?
by owen_a
Sat Mar 17, 2012 09:54
Forum: Problems
Topic: Link Error - 'stlport_static.lib'
Replies: 10
Views: 2921

So there's a broken version of minetest and no ones going to fix it? Huh.
by owen_a
Sat Mar 17, 2012 09:47
Forum: Problems
Topic: Link Error - 'stlport_static.lib'
Replies: 10
Views: 2921

Any solutions?
by owen_a
Sat Mar 17, 2012 08:59
Forum: Problems
Topic: Link Error - 'stlport_static.lib'
Replies: 10
Views: 2921

I'm using Windows XP Professional with Visual C++ 2008 Installed, with Microsoft Platform SDK for 2003, and windows 7, with DirectX SDK August 2007.

My directory tree is exactly like the one the ReadMe specified and I followed it exactly
by owen_a
Sat Mar 17, 2012 08:31
Forum: Problems
Topic: Link Error - 'stlport_static.lib'
Replies: 10
Views: 2921

Link Error - 'stlport_static.lib'

Hello,

I just tried compiling minetest for the fifth time when i keep coming across a link error everytime it's attempting to link. The full error is:

Linking...
LINK : fatal error LNK1104: cannot open file 'stlport_static.lib'

Any ideas? Thanks!