Gamestudio Links
Zorro Links
Newest Posts
AlpacaZorroPlugin v1.3.0 Released
by kzhao. 05/20/24 01:28
Free Live Data for Zorro with Paper Trading?
by AbrahamR. 05/18/24 13:28
Change chart colours
by 7th_zorro. 05/11/24 09:25
Data from CSV not parsed correctly
by dr_panther. 05/06/24 18:50
AUM Magazine
Latest Screens
The Bible Game
A psychological thriller game
SHADOW (2014)
DEAD TASTE
Who's Online Now
3 registered members (kzhao, AndrewAMD, bigsmack), 824 guests, and 5 spiders.
Key: Admin, Global Mod, Mod
Newest Members
Hanky27, firatv, wandaluciaia, Mega_Rod, EternallyCurious
19051 Registered Users
Previous Thread
Next Thread
Print Thread
Rate Thread
Page 2 of 3 1 2 3
Re: new_ need_some_help [Re: justgamefreak] #222818
08/21/08 02:38
08/21/08 02:38
Joined: Aug 2008
Posts: 408
mi usa
sadsack Offline OP
Senior Member
sadsack  Offline OP
Senior Member

Joined: Aug 2008
Posts: 408
mi usa
tryed that about 2 PM this after noon, I tryed to download some of the code I found on this forum. Not one work, just get a black screen. this program just will not run right on my computer.
Thank You
renny



I have tryed all of that stuff. all I get is a black screen.
CODE:
////////////////////////////////////////////////////////////////////////////
// small.c - small lite-C example
////////////////////////////////////////////////////////////////////////////
#include <acknex.h> // include these predefined, needed files in our project
#include <default.c>

void main()
{
// Load the level named "world.hmp"
level_load("world.hmp");
// Now create the "earth.mdl" model at x = 10, y = 20, z = 30 in our 3D world
//ent_create("worl.x", vector(10, 20, 30), NULL);
// NULL tells the engine that the model doesn't have to do anything
}

I was hoping that this program realy worked.
Thank roe your help and time
renny


I have A7 Commercial .............. Now I just need to learn how to use it

Re: new_ need_some_help [Re: sadsack] #222819
08/21/08 02:40
08/21/08 02:40
Joined: Aug 2008
Posts: 16
J
justgamefreak Offline
Newbie
justgamefreak  Offline
Newbie
J

Joined: Aug 2008
Posts: 16
still trying to load .hmp ?

as i said change it as world.x

try my codes delete all yours and paste mines ok ?

Code:
#include <acknex.h> 
#include <default.c>

void main()
{

level_load("small.x");

//ent_create("earth.mdl", vector(10, 20, 30), NULL);

} 


Last edited by justgamefreak; 08/21/08 02:41.
Re: new_ need_some_help [Re: justgamefreak] #222827
08/21/08 03:17
08/21/08 03:17
Joined: Sep 2003
Posts: 929
Spirit Offline

Moderator
Spirit  Offline

Moderator

Joined: Sep 2003
Posts: 929
Why dont you try the samples, or the tutorial? Just a suggestion.

I dont think that 'level_load("small.x");' can work. At least there is not such file as "small.x". A valid level format would be "small.hmp" or "world.wmb" but no ".x".

The "small.hmp" is a terrain file and that must exist on your PC and if it does not exist it can not be loaded and thats why you get a black screen.

Re: new_ need_some_help [Re: Spirit] #222982
08/21/08 20:06
08/21/08 20:06
Joined: Aug 2008
Posts: 408
mi usa
sadsack Offline OP
Senior Member
sadsack  Offline OP
Senior Member

Joined: Aug 2008
Posts: 408
mi usa
hi spirit,
I tryed all of that. 3D world stuido will let you export in the formatt of hmp. I made a small level and name it small.
code:
#include <acknex.h>
#include <default.c>

void main()
{

level_load("small.hmp");

//ent_create("earth.mdl", vector(10, 20, 30), NULL);

just a black screen.

Is this program going run on ms 2000?
I tryed it on XP and it did not work, just a black screen
If any one may know what is wrong, let me know.
renny


I have A7 Commercial .............. Now I just need to learn how to use it

Re: new_ need_some_help [Re: sadsack] #222993
08/21/08 20:44
08/21/08 20:44
Joined: Aug 2000
Posts: 1,140
Baunatal, Germany
Tobias Offline

Moderator
Tobias  Offline

Moderator

Joined: Aug 2000
Posts: 1,140
Baunatal, Germany
When a HMP of 3D world studio does not work, maybe ask the makers of 3D world studio? Are you sure that they can create a real HMP file?

I mean, when a HMP is just black there can be 1000 reasons, for instance its too small so that you dont see it, or too big so that you are inside it and dont see it either, or a wrong format altogether.

Re: new_ need_some_help [Re: Tobias] #223036
08/22/08 00:20
08/22/08 00:20
Joined: Aug 2008
Posts: 408
mi usa
sadsack Offline OP
Senior Member
sadsack  Offline OP
Senior Member

Joined: Aug 2008
Posts: 408
mi usa
Hi all,
I want to thank you all for your help. I found out something that may help. I been reading the workshop.
04 of the workshop is just putting up a bmap on the screen.
Very smiple code.
CODE:
///////////////////////////////////////////////////////////////
#include <acknex.h>
#include <default.c>
///////////////////////////////////////////////////////////////
BMAP first_pcx = "first.pcx"; // my first bmap
PANEL first_pan = // my first panel
{
pos_x = 0;
pos_y = 0;
layer = 1;
bmap = first_pcx;
flags = OVERLAY | VISIBLE;
}
/////////////////////////////////////////////////////////////////////
function main()
{
video_mode = 7;
screen_color.blue = 150;

Now that code works fine. the bmap come up just like it should.
I used the same code(changing the name and formatt) with bmp,ipg,and gif. not one bmap came up. Just a black screen.

So now I take the bmap I made and reformatt it to pcx and name it (first). Ok now I move the workshop first.pcx out of the folder and put my first.pcx in the workshop folder. than I ran the program just like I did with the workshop bmap,That worked fine, using the same code that worked on there bmap. My bmap did not come up, just a black screen.

Why can't I load up anythig in 3DGameSpace???
renny

EDIT:
I just reinstall 3DGS. I see that it said on a note that some people may have to install this dll (MS\CPI01.DLL). I whento there site (Microsoft.com ) trying to find this dll. I could not find it. Does anyone know what this dll does?
Thank you renny


Last edited by sadsack; 08/22/08 00:46.

I have A7 Commercial .............. Now I just need to learn how to use it

Re: new_ need_some_help [Re: sadsack] #223337
08/23/08 15:12
08/23/08 15:12
Joined: Aug 2008
Posts: 408
mi usa
sadsack Offline OP
Senior Member
sadsack  Offline OP
Senior Member

Joined: Aug 2008
Posts: 408
mi usa
Well, I was just told by some one that C-Lite will not load the level in the workshop tut. If this is true,that you need 3DGS7 or higher to load the level, it would been nice if some on told me this. I have many hours trying to make it work.
renny


I have A7 Commercial .............. Now I just need to learn how to use it

Re: new_ need_some_help [Re: sadsack] #223338
08/23/08 15:17
08/23/08 15:17
Joined: Apr 2006
Posts: 624
DEEP 13
badapple Offline
User
badapple  Offline
User

Joined: Apr 2006
Posts: 624
DEEP 13
i do not have a7 and i loaded all the lite c tutes with lite c so unless they changed it since i did it , that is incorrect

Re: new_ need_some_help [Re: badapple] #223358
08/23/08 16:26
08/23/08 16:26
Joined: Aug 2008
Posts: 408
mi usa
sadsack Offline OP
Senior Member
sadsack  Offline OP
Senior Member

Joined: Aug 2008
Posts: 408
mi usa
This is not getting us any place. Lets hual out the big guns.

this is what the program should look like when it opens.



the next photo is what happen when I try to load a level.




and the last photo is what I see from workshop 18 folder when It he program is loaded.




Yes i konw that most of you are going say that it is my computer, but it is not, I tryed it on 7 other computers with the same happenings.

I was looking forward to buying 3DGameSpace, but it it is not going work on half of the comuters I am going to be forced to look at other programs.

I hope I can fine out what is going on here,
renny


I have A7 Commercial .............. Now I just need to learn how to use it

Re: new_ need_some_help [Re: sadsack] #223363
08/23/08 17:05
08/23/08 17:05
Joined: Oct 2006
Posts: 873
S
Shadow969 Offline
User
Shadow969  Offline
User
S

Joined: Oct 2006
Posts: 873
it looks like you're using lite-c free version and trying to load a BSP level, which is unsupported by that version

Page 2 of 3 1 2 3

Moderated by  HeelX, Lukas, rayp, Rei_Ayanami, Superku, Tobias, TWO, VeT 

Gamestudio download | chip programmers | 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