[Featured][Dev] Wizards

Here you can find side projects of the staff and great projects which we think should get extra support. (Note that featured projects are not projects by staff members of MaxCoderz)

Moderator: MaxCoderz Staff

Post Reply
Toaster
Extreme Poster
Posts: 322
Joined: Tue 15 Feb, 2005 12:08 am
Location: Lost in a land of mysteries.....

Post by Toaster »

Really nice!! :D :worship: :worship: :worship:
Join me at:
http://nanotech.pcriot.com
or
http://emancipal.co.nr

Coming soon..
Rewrite 3D Level Editor - 55% done!!
Emancipal - The Creator 5% done
Patori
Maxcoderz Staff
Posts: 1479
Joined: Sat 18 Dec, 2004 3:51 am
Location: Toledo, Ohio, USA

Post by Patori »

:bow: REAlLY REALLY NICE! :drifter:
Currently coming up with a new signature idea... since my forum avatar changer was killed by an upgrade...
User avatar
NanoWar
Extreme Poster
Posts: 365
Joined: Fri 17 Dec, 2004 6:39 pm
Location: #$&"%§!
Contact:

Post by NanoWar »

Does "really nice" mean: I have new card ideas? :mrgreen:
I hope so...

New [PindurTI!!!] screenshot:
Image

Now 5 different enemy types exist.
Now 2 new ablities exist.
Now 4 decks exist.
Now 19 cards exist.
Now a Ti-83 version exist.
Now PindurTI is on my desktop.
Now I'm happy. :wink:
Revolution Software
thecheat
Calc Guru
Posts: 901
Joined: Tue 29 Mar, 2005 9:13 pm
Location: almost..........there........

Post by thecheat »

hurry up and release it or we might all explode *see avatar for details*
Patori
Maxcoderz Staff
Posts: 1479
Joined: Sat 18 Dec, 2004 3:51 am
Location: Toledo, Ohio, USA

Post by Patori »

wow, that looks cool... anyway to make it darker?
Currently coming up with a new signature idea... since my forum avatar changer was killed by an upgrade...
thecheat
Calc Guru
Posts: 901
Joined: Tue 29 Mar, 2005 9:13 pm
Location: almost..........there........

Post by thecheat »

looks like it's supposed to be black right? :?
User avatar
NanoWar
Extreme Poster
Posts: 365
Joined: Fri 17 Dec, 2004 6:39 pm
Location: #$&"%§!
Contact:

Post by NanoWar »

It is black, but PindurTI makes it grey... the game stays is two colour mode :mrgreen:
Revolution Software
thecheat
Calc Guru
Posts: 901
Joined: Tue 29 Mar, 2005 9:13 pm
Location: almost..........there........

Post by thecheat »

good I thought so
woods_dragon
New Member
Posts: 9
Joined: Thu 30 Jun, 2005 1:14 am
Location: OH,USA
Contact:

Post by woods_dragon »

I just downloaded the game.... and it's awesome... any news on this project?
User avatar
NanoWar
Extreme Poster
Posts: 365
Joined: Fri 17 Dec, 2004 6:39 pm
Location: #$&"%§!
Contact:

Post by NanoWar »

Sorry for the post delay, I had not much time to program until now - but I need help in my Program. The one who can help me gets his name in the credits...

Problem:
I search for a routine which counts numbers in an array.
The array ends with ",255" ( Array: .db 0,1,2,3,4,0,1,8,5,2,255 ).
Inputs should be hl = pointer to the array and a = number to search.
Output should be a = amount of searched numbers in the array.
Thanks for HELP !!!
Revolution Software
Stickmanofdoom
Regular Member
Posts: 86
Joined: Fri 17 Dec, 2004 8:20 pm
Contact:

Post by Stickmanofdoom »

Code: Select all

count:
	ld bc,$FF00	;b=255 c=0
	ld d,a		;save value to find
loop:
	ld a,(hl)
	inc hl
	cp b
	ret z		;end if #=255
	cp d
	jr nz,loop	;don't inc if !=d
	inc c
	jr loop
It's untested, but should work. It outputs to c, not a.
User avatar
NanoWar
Extreme Poster
Posts: 365
Joined: Fri 17 Dec, 2004 6:39 pm
Location: #$&"%§!
Contact:

Post by NanoWar »

Erm... wasnt very difficult I think - but thank you. If you would plz say me your real name for the credits entry?
My Upload-server doesn't work in the moment so you must wait to see the screenshots.
Another problem is that "pic_z80.exe" doesn't work any more... :cry: I dont know why. But when I start it the msg: "unexpected error" comes up... ô.O
Revolution Software
Kozak
Maxcoderz Staff
Posts: 791
Joined: Fri 17 Dec, 2004 5:33 pm
Location: On the dark side of the moon.
Contact:

Post by Kozak »

NanoWar wrote:Erm... wasnt very difficult I think - but thank you. If you would plz say me your real name for the credits entry?
My Upload-server doesn't work in the moment so you must wait to see the screenshots.
Another problem is that "pic_z80.exe" doesn't work any more... :cry: I dont know why. But when I start it the msg: "unexpected error" comes up... ô.O
You we're able to make a good looking game like that but can't code such a simple routine? :?
"They say that sea was created by a man named Maarten Zwartbol, a long time ago...." - Duck, an old Corbin version
User avatar
NanoWar
Extreme Poster
Posts: 365
Joined: Fri 17 Dec, 2004 6:39 pm
Location: #$&"%§!
Contact:

Post by NanoWar »

Right. :)
No not really: I coded a similar routine before, but it didnt work. so i decided to aks someone around here. This routine was very easy I know, but everyone knows these days when nothing wants to work. This was mine.
To not feel disappointed you will see n1ce screenshots (if the upload server works) - tomorrow!

At the 7th august I will start the short travel (1year) to netherland - so dont wonder where I am. If all goes right I will be able to finish WIZARDS there.
In hope,
NanoWar :P
Revolution Software
User avatar
NanoWar
Extreme Poster
Posts: 365
Joined: Fri 17 Dec, 2004 6:39 pm
Location: #$&"%§!
Contact:

Post by NanoWar »

Update:
-Deckbuilding is 99% ready
-A few fight animations are added
-Menu is ready

Screenshot:
Image
CalcCapture is horrible...
I promise next screenshot will be made with PTI...

-NanoWar
Revolution Software
Post Reply