Search found 127 matches

by turshija
Sun Feb 25, 2007 5:16 pm
Forum: General discussion
Topic: BUG report !
Replies: 3
Views: 6143

i have found the solution how to add variable even if bug is here ... just make DefineVariable somewhere else and copy/paste it in App-s OnLoaded section ... :)

cheers

Boris
by turshija
Sun Feb 25, 2007 5:14 pm
Forum: General discussion
Topic: BUG report !
Replies: 3
Views: 6143

BUG report !

Ok I found big bug ...

in App OnLoaded section I cannot add DefineVariable nor DefineConstant anymore...
fix that and release 0.931 beta version or some kind of patch plz....

Boris
by turshija
Sat Feb 24, 2007 5:39 pm
Forum: General discussion
Topic: Few suggestions for new build of ZGE
Replies: 2
Views: 5344

Yes clipboard support should be improved. In the meantime, try this for moving components between projects: Open the .zgeproj-files with a text editor like notepad. You will see xml-text like this: <Group Name="Globals"> <Children> ... </Children> </Group> <!-- Globals --> Copy and paste ...
by turshija
Sat Feb 24, 2007 4:17 pm
Forum: General discussion
Topic: Few suggestions for new build of ZGE
Replies: 2
Views: 5344

Few suggestions for new build of ZGE

Now some of features that would be nice to be implemented: -Undo option -possibility to have more projects open at the same time and then switch between them with F6 for example or from window\project1 -possibility to copy paste ZGE objects when closing one project, for example I open project1 copy ...
by turshija
Sat Feb 24, 2007 4:10 pm
Forum: Releases
Topic: ZGameEditor beta 0.93
Replies: 1
Views: 7026

nice ... I like new icons :)

good job! I hope the next version will have FILE I/O support ...
by turshija
Sat Feb 24, 2007 10:34 am
Forum: General discussion
Topic: Syntax question?
Replies: 4
Views: 7646

Re: Syntax question?

beldus wrote: modvalue =frac(X/Y)*Y

Where from your example x=10 and y=5
nice ...

I'm happy there are more people online because there are more ideas :)

Thanks ...
by turshija
Thu Feb 22, 2007 7:52 pm
Forum: General discussion
Topic: Syntax question?
Replies: 4
Views: 7646

Syntax question?

I wanted to know how to use modulation ? in most of programming languages its MOD or % but doesn't work in ZGE...

10 mod 5 = 0
10 % 5 = 0
12 % 5 = 2

i need it now :)
by turshija
Thu Feb 22, 2007 3:35 pm
Forum: General discussion
Topic: Future of ZGameEditor ...
Replies: 1
Views: 4829

Future of ZGameEditor ...

I wanted to ask something about ZGE... Is it going to be free program later if it shows some good characteristics? Is it going to be Open-Source program? I personally think this is a little bit too good and useful program to be freeware, and I wouldn't release it as free program, but I don't have ri...
by turshija
Thu Feb 22, 2007 3:26 pm
Forum: General discussion
Topic: Where is everybody ? :)
Replies: 2
Views: 6056

Where is everybody ? :)

We have 20 registered members at the moment on this forum, but only me and VilleK are posting ... I guess we need more beta testers so that developing would be much faster ...
by turshija
Thu Feb 22, 2007 3:22 pm
Forum: General discussion
Topic: The New Question about ZGE :)
Replies: 5
Views: 9422

yeah and the thing that I almost forgot is that I will add feature like good old Nokia snakes that can go through walls :) if (head.X>maxX) head.X = -maxX; else if (head.X<-maxX) head.X = maxX; if (head.Y>maxY) head.Y=-maxY; else if (head.Y<maxY) head.Y = maxY; oh yeah thats it
by turshija
Thu Feb 22, 2007 3:17 pm
Forum: General discussion
Topic: The New Question about ZGE :)
Replies: 5
Views: 9422

yeah ... my idea for snake is this: make record snakebody that has X and Y that are integers... spawn head and body should follow the head like this: body[0].X = head.X; body[0].Y = head.Y; head.x = {somewhere}; head.y = {somewhere}; do body[n].X = body[n+1].X; body[n].Y = body[n+1].Y; n++; while (n...
by turshija
Thu Feb 22, 2007 2:23 pm
Forum: Your projects
Topic: First testing app :)
Replies: 5
Views: 8049

yeah, but I would like to create some of arcade games that load the level from txt or dat file and for example they are presented as a text in some format like: @@@@@@@@@@@@@@@@@@@ @ @ @ @ @ ___ ____ @ @ / | | \ @ @ P / | /\/\/\| \ E @ @@@@@@@@@@@@@@@@@@@ or any other way ... (use imagination ;) ) s...
by turshija
Tue Feb 20, 2007 6:22 pm
Forum: Your projects
Topic: First testing app :)
Replies: 5
Views: 8049

ye, i know but i don't want to make level like me and then opponents spawn and stuff... I want to make something like arcade game, you play, jump over the obstacles and stuff like that ... Finishing levels, proceeding to next level with much harder obstacles, maybe some moving objects that will kill...
by turshija
Mon Feb 19, 2007 8:49 pm
Forum: General discussion
Topic: Me again :D
Replies: 1
Views: 4715

Me again :D

I know I'm a real pain in the ass with all these questions and stuff but I simply want to learn new things :) now I'm having problems and questions with collisioning ... In tutorial 3 you have explained something about collision ... Now everything is fine when I want to detect collision between Play...
by turshija
Mon Feb 19, 2007 7:20 pm
Forum: Your projects
Topic: First testing app :)
Replies: 5
Views: 8049

First testing app :)

Ok i have been playing a little bit with objects and gravity and collisioning and this is my first app with that :) i need just one thing to make a little game from this thingy: is there any possibility to make program read something from file? For example I want to make lvl1.dat , lvl2.dat ... And ...