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
5 registered members (Dico, AndrewAMD, TipmyPip, NewbieZorro, Grant), 15,791 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
Page 1 of 2 1 2
Sprites??? #222336
08/18/08 21:55
08/18/08 21:55
Joined: May 2008
Posts: 42
Personal
Yarwin Offline OP
Newbie
Yarwin  Offline OP
Newbie

Joined: May 2008
Posts: 42
Personal
Hi all,

i know i'm not supposed to post this here, but i'll have to ask it anyway :p


How do i change my sprites? Like an ingame mini-map or a bar of you HP or anything?

I got that weird green + with 100 near it, its a standard sprite, how do i change it?



Thanks!


Team with Phix1
www.LegendWorlds.com, coming game...
Re: Sprites??? [Re: Yarwin] #222366
08/19/08 01:01
08/19/08 01:01
Joined: Nov 2007
Posts: 1,143
United Kingdom
DJBMASTER Offline
Serious User
DJBMASTER  Offline
Serious User

Joined: Nov 2007
Posts: 1,143
United Kingdom
Those are not sprites, they are panels. You change the actual image by modifying the bmap property of a PANEL* object.

If you have done the lite-c workshops then you would already know this.

1) This has nothing at all to do with shaders.
2) If you knew you weren't supposed to post here, then why do it?

Don't mean to have a go but the answers to your questions are easily found in the manual and the lite-c workshops, on the 3DGS downloads page.

Re: Sprites??? [Re: DJBMASTER] #222370
08/19/08 02:11
08/19/08 02:11
Joined: Jul 2008
Posts: 553
Singapore
delinkx Offline
User
delinkx  Offline
User

Joined: Jul 2008
Posts: 553
Singapore
read the manual and workshops on customizing the panels and creating your own..


A7 commercial Team / VC++ 2008 Pro
homepage | twitter | facebook
Re: Sprites??? [Re: delinkx] #222524
08/19/08 19:41
08/19/08 19:41
Joined: May 2008
Posts: 42
Personal
Yarwin Offline OP
Newbie
Yarwin  Offline OP
Newbie

Joined: May 2008
Posts: 42
Personal
Thx

Last edited by Yarwin; 08/22/08 10:35.

Team with Phix1
www.LegendWorlds.com, coming game...
Re: Sprites??? [Re: Yarwin] #222526
08/19/08 19:47
08/19/08 19:47
Joined: May 2008
Posts: 42
Personal
Yarwin Offline OP
Newbie
Yarwin  Offline OP
Newbie

Joined: May 2008
Posts: 42
Personal
I will never learn scripting frown


Team with Phix1
www.LegendWorlds.com, coming game...
Re: Sprites??? [Re: Yarwin] #222527
08/19/08 19:50
08/19/08 19:50
Joined: May 2008
Posts: 42
Personal
Yarwin Offline OP
Newbie
Yarwin  Offline OP
Newbie

Joined: May 2008
Posts: 42
Personal
LOL, that workshop doesnt help at all! I downloaded it and it gives me just junk scripting... I don't even know HOW to script...


Team with Phix1
www.LegendWorlds.com, coming game...
Re: Sprites??? [Re: Yarwin] #222568
08/19/08 23:18
08/19/08 23:18
Joined: Nov 2007
Posts: 1,143
United Kingdom
DJBMASTER Offline
Serious User
DJBMASTER  Offline
Serious User

Joined: Nov 2007
Posts: 1,143
United Kingdom
Then maybe 3D Gamestudio isn't for you. Those workshops are about as basic as it gets. You need to learn the basics of syntax and program flow before you write any major games.

Just try them again and don't give up. If you think they are a waste of time then all i can suggest is you find another engine that has more visual "drag-and-drop" interfaces.

Last edited by DJBMASTER; 08/19/08 23:20.
Re: Sprites??? [Re: DJBMASTER] #223094
08/22/08 10:33
08/22/08 10:33
Joined: May 2008
Posts: 42
Personal
Yarwin Offline OP
Newbie
Yarwin  Offline OP
Newbie

Joined: May 2008
Posts: 42
Personal
Nope, i'm just watching te codes, i got an example from the workshop, i'm understanding half of it :D:D Thats really good for me :p

Here it is: (when you see somehting like: //(yes) or //(no) It means how my level of understanding is :p)
////////////////////////////////////////////////////////////////////
#include <acknex.h>(yes)
#include <default.c>(no)

var a = 0;//(kinda)
var b = 0;//(kinda)
var c = 0;//(kinda)

/////////////////////////////////////////////////////////////////////

PANEL* panDisplay =
{
digits(35, 10, "a = %0.f", *, 1, a);//(are these the coordinates of the panel?)
digits(35, 19, "b = %0.f", *, 1, b);
digits(35, 28, "c = %0.f", *, 1, c);
flags = VISIBLE;//(not really)
}

/////////////////////////////////////////////////////////////////////

function main()
{
video_mode = 7; // create a program window of 800x600 pixels//(yes)
screen_color.blue = 150; // and make its background dark blue//(yes)
while (1)//(no)
{
c = a + b;//(yes)
wait (1);//(no)
}
}

Last edited by Yarwin; 08/22/08 10:34.

Team with Phix1
www.LegendWorlds.com, coming game...
Re: Sprites??? [Re: Yarwin] #223206
08/22/08 17:18
08/22/08 17:18
Joined: May 2008
Posts: 42
Personal
Yarwin Offline OP
Newbie
Yarwin  Offline OP
Newbie

Joined: May 2008
Posts: 42
Personal
Pretty few things :p


Team with Phix1
www.LegendWorlds.com, coming game...
Re: Sprites??? [Re: Yarwin] #223211
08/22/08 17:32
08/22/08 17:32
Joined: Aug 2008
Posts: 63
=Strogg=3rd_com_cent.
O
Omicron_NEGA Offline
Warez kiddie?
Omicron_NEGA  Offline
Warez kiddie?
O

Joined: Aug 2008
Posts: 63
=Strogg=3rd_com_cent.
all you have to do is READ the manual and the workshops carefully.
i use to be like a hopeless fool until i finished reading those workshops

.....
it really helps!

Edit:your questions all in the manual,did u check ?

Last edited by Omicron_NEGA; 08/22/08 17:33.

P4 3.6GHz x2 8GB RAM DDR2 GeForce8800GTS
Page 1 of 2 1 2

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