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
3 registered members (Ayumi, NewbieZorro, TipmyPip), 13,887 guests, and 6 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 5 1 2 3 4 5
Re: Started [Re: Brodi717] #201116
04/07/08 02:04
04/07/08 02:04
Joined: Apr 2008
Posts: 38
B
Brodi717 Offline OP
Newbie
Brodi717  Offline OP
Newbie
B

Joined: Apr 2008
Posts: 38
when i try to test a script I made i get error video mode read only. any ideas what the propblem is.


XBlade case, Gigabyte GA-945GCM-S2 motherboard, 2gB OCZ Memory, Pentuim D 925 3.0 Ghz overclocked to 3.67 Ghz, 250 gb Sata 3.0 Western Digital, SATA 3.0 DvD Burner, and a NVIDIA GeForce 8400 GS 512 Mb. The ultimate gaming system for a 12 year old woot.
Re: Started [Re: Brodi717] #201232
04/07/08 17:25
04/07/08 17:25

M
Malice
Unregistered
Malice
Unregistered
M



// Lite-C in function main
video_mode =8; // create a program window of 800x600 pixels
NOT*
// c-script out of function main
var video_mode=8

Last edited by Malice; 04/07/08 17:27.
Re: Started [Re: ] #201258
04/07/08 20:45
04/07/08 20:45
Joined: Apr 2008
Posts: 38
B
Brodi717 Offline OP
Newbie
Brodi717  Offline OP
Newbie
B

Joined: Apr 2008
Posts: 38
that is what I use and i get that error. i use

function main()
{
video_mode = 8;
}


XBlade case, Gigabyte GA-945GCM-S2 motherboard, 2gB OCZ Memory, Pentuim D 925 3.0 Ghz overclocked to 3.67 Ghz, 250 gb Sata 3.0 Western Digital, SATA 3.0 DvD Burner, and a NVIDIA GeForce 8400 GS 512 Mb. The ultimate gaming system for a 12 year old woot.
Re: Started [Re: Brodi717] #201261
04/07/08 20:52
04/07/08 20:52
Joined: Oct 2007
Posts: 5,211
İstanbul, Turkey
Quad Offline
Senior Expert
Quad  Offline
Senior Expert

Joined: Oct 2007
Posts: 5,211
İstanbul, Turkey
you sure you are saving your file with .c extension?


3333333333
Re: Started [Re: Quad] #201262
04/07/08 21:09
04/07/08 21:09
Joined: Apr 2008
Posts: 38
B
Brodi717 Offline OP
Newbie
Brodi717  Offline OP
Newbie
B

Joined: Apr 2008
Posts: 38
I changed it now it says cant compile test.c


XBlade case, Gigabyte GA-945GCM-S2 motherboard, 2gB OCZ Memory, Pentuim D 925 3.0 Ghz overclocked to 3.67 Ghz, 250 gb Sata 3.0 Western Digital, SATA 3.0 DvD Burner, and a NVIDIA GeForce 8400 GS 512 Mb. The ultimate gaming system for a 12 year old woot.
Re: Started [Re: Brodi717] #201368
04/08/08 16:41
04/08/08 16:41
Joined: Apr 2008
Posts: 38
B
Brodi717 Offline OP
Newbie
Brodi717  Offline OP
Newbie
B

Joined: Apr 2008
Posts: 38
okay here is a image of the leg I made.(no bones yet)




XBlade case, Gigabyte GA-945GCM-S2 motherboard, 2gB OCZ Memory, Pentuim D 925 3.0 Ghz overclocked to 3.67 Ghz, 250 gb Sata 3.0 Western Digital, SATA 3.0 DvD Burner, and a NVIDIA GeForce 8400 GS 512 Mb. The ultimate gaming system for a 12 year old woot.
Re: Started [Re: Brodi717] #201452
04/09/08 02:15
04/09/08 02:15
Joined: Apr 2008
Posts: 38
B
Brodi717 Offline OP
Newbie
Brodi717  Offline OP
Newbie
B

Joined: Apr 2008
Posts: 38
okay the image will not show up and it has no errors. here is the script

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

BMAP l = "LEADERBOARD.PCX";

PANEL first_pan =
{
bmap = l;
pos_x = 10;
pos_y = 10;
layer = 1;
flags = VISIBLE;
}

function main()
{
video_mode = 7;
}


Last edited by Brodi717; 04/09/08 02:17.

XBlade case, Gigabyte GA-945GCM-S2 motherboard, 2gB OCZ Memory, Pentuim D 925 3.0 Ghz overclocked to 3.67 Ghz, 250 gb Sata 3.0 Western Digital, SATA 3.0 DvD Burner, and a NVIDIA GeForce 8400 GS 512 Mb. The ultimate gaming system for a 12 year old woot.
Re: Started [Re: Brodi717] #201453
04/09/08 02:21
04/09/08 02:21

M
Malice
Unregistered
Malice
Unregistered
M



video_screen =1; // set fullscreen mode

try adding this to function plus load a level....

function main()
{
video_screen =1; // set fullscreen mode
video_mode =7; // create a program window of 800x600 pixels
level_load("YOUR_LEVEL_NAME_HERE.wmb");
wait(-2);
}

Re: Started [Re: ] #201455
04/09/08 02:29
04/09/08 02:29
Joined: Apr 2008
Posts: 38
B
Brodi717 Offline OP
Newbie
Brodi717  Offline OP
Newbie
B

Joined: Apr 2008
Posts: 38
it still doesnt appear.


XBlade case, Gigabyte GA-945GCM-S2 motherboard, 2gB OCZ Memory, Pentuim D 925 3.0 Ghz overclocked to 3.67 Ghz, 250 gb Sata 3.0 Western Digital, SATA 3.0 DvD Burner, and a NVIDIA GeForce 8400 GS 512 Mb. The ultimate gaming system for a 12 year old woot.
Re: Started [Re: Brodi717] #201456
04/09/08 02:31
04/09/08 02:31

M
Malice
Unregistered
Malice
Unregistered
M



change
bmap to BMAP*
PANEL to PANEL*

sorry I missed it the first time .

Last edited by Malice; 04/09/08 02:32.
Page 3 of 5 1 2 3 4 5

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