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 (AndrewAMD, Ayumi, NewbieZorro), 14,141 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
Message Error.... What's Happen????? #10885
11/07/02 03:12
11/07/02 03:12
Joined: Jan 2002
Posts: 42
Brazil
cheferson Offline OP
Newbie
cheferson  Offline OP
Newbie

Joined: Jan 2002
Posts: 42
Brazil
Hi, friends developers of Gamestudio....

Sorry for my English bad, but I have a question for my game in WDL Scripts.

I'm make a menu for my game. I make a Option Game with options:

-> Control Music Volume;
-> Control Sound Volume;
-> Resolution Screen(with options to 800x600 and 1024x768);
-> Color Screen(with option to 16 and 32 Bit Color);
-> Button OK for confirm changes definided for player;
-> Button Cancel for back the default values. My default values are: Music and Sound, 100; Resolution Default, 800x600 and 16 Bit Color....

My script work OK, but when I selected 1024x768 of resolution or I selected 32 Bits Color, the Gamestudio active a message box with the string:

"3D Card Internal Failure 761"....

On the WDL Manual Documentation, a message explication is : "Your video card is weak. Run this software in weak mode."

I used the comand -w3d on the line command, but the MessageBox show continue in execution of the program...........................

My question is... What make for not show the MessageBox with message up..................................???????????????????????????????????????????


[image]http://galeon.com/chefinho/assinatura/quico_avatar.jpeg[/image] By Chief
Re: Message Error.... What's Happen????? #10886
11/07/02 04:17
11/07/02 04:17

A
Anonymous
Unregistered
Anonymous
Unregistered
A



I think your graphic card is too weak, so buy a better one (at least with 32MB RAM).

PS: Your English sounds well. Greetings to Brazil!

Re: Message Error.... What's Happen????? #10887
11/07/02 04:29
11/07/02 04:29

A
Anonymous
Unregistered
Anonymous
Unregistered
A



Did you tried this:

code:
FUNCTION fn_switch_video_to_8_32_1();

STRING string_video_control[40];
STRING string_succeeded_8_32_1 = "Video_switch 8, 32, 1 succeeded!"
STRING string_failed_8_32_1 = "Video_switch 8, 32, 1 failed!"

TEXT text_show_video_success
{
LAYER 2;
POS_X = 100;
POS_Y = 100;
FONT ....; //give a font
STRING string_video_control;
FLAGS VISIBLE;
}

FUNCTION fn_switch_video_to_8_32_1()
{
IF (0 != video_switch( 8, 32, 1))
{
str_cpy (string_video_control, string_succeeded_8_32_1);
}
ELSE
{
str_cpy (string_video_control, string_failed_8_32_1);
}
}

ON_A fn_switch_video();

Does it also give a error message? Maybe not! I didnt tried it, but hoping I could help a bit...

Note: If your viedo card is too weak, try it in the window mode (video_switch( 8, 32, 2). Good success!!


Moderated by  HeelX, Spirit 

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