Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
Ranked #11.7K
Ranked #3K
~4K People Reached
Favorite Tags
Member Avatar for Sh4dowz

Hello, I'm new to these forums and I was wondering if any of you guys know a programmming language that is more designed for Video Games than casual software. I want to make a basic 2D platformer or maybe a simeple RPG that has a moving sprite. I have tried …

Member Avatar for tuto.narahenpitiya
0
633
Member Avatar for miran788

I'm having trouble with this assignment: Write a class Coins with one constructor that takes a number of cents as a parameter. Supply four public methods, getQuarters, getNickels, getDimes, getPennies, that return the number of corresponding coins that add up to the amount (in the optimal representation with the smallest …

Member Avatar for jalpesh_007
0
1K
Member Avatar for happygeek

I first started writing about the 'coming soon' Xbox 720 way back in 2008 if my memory serves me well. Every now and then another rumour emerges, supposedly from 'a reliable source within Microsoft' and confirming that the release date has been fixed or announcing the final hardware specification for …

Member Avatar for rhowell
0
449
Member Avatar for shanenin
Re: True

I am just back messing around a bit with programming. I am trying to clear out the mental cobwebs. I thought any non empty string evaluates to True. but according to my code, it does not apear so word = 'abc' if word is True: print 'yes' else: print 'no' …

Member Avatar for Gribouillis
0
107
Member Avatar for toby.thomas.79

I have developed an Opengl based desktop game and wish to publish it in net. I want to host the final setup/installer of the game which is around 150mb, so that anyone can download it from the link. Can anyone please recommend services that offer free publishing of such applications? …

Member Avatar for Anddos
0
166
Member Avatar for soapyillusion

Daniweb isn lt the first forum I joined, (but thankfully its the only one I am currently on). And over the years as I've browsed literally 100's of forums, in the past I always seem to see one question that always pervades. (Well at least on the gaming ones). And …

Member Avatar for jLocke
0
209
Member Avatar for Karkalash

Hi All: I'm wondering if anyone knows any usefull links to articles I can read on coding multiplayer for XNA. I'm looking for something that would teach me how to code for more than two players. The idea of what I'm working on is for a standard 4v4 deathmatch over …

Member Avatar for jLocke
0
464
Member Avatar for berben11

My XNA Indie game engine "TemporalWars" code is now available on CodePlex -> http://temporalwarsindieeng.codeplex.com. You can download the engine, which is in C#, and build indie game for Microsoft's XNA platform. Ben

Member Avatar for berben11
0
138
Member Avatar for efth

I recently left Python behind to pick up Java. In Python, a variable defined in a function could not be called outside of the function. But you could at least let the function return a value, which could be a variable defined in the function. When a variable is defined …

Member Avatar for jLocke
0
250
Member Avatar for JESIA72

hey all iv have an assignment(wrtie an employee payroll program) which iv seen alot of other people have posted about so sorry for bringing it up again but im stuck. Iv made the program and it runs fine but it always calculates grosspay and netpay as 0.0 everything else (firstname …

Member Avatar for jLocke
0
550
Member Avatar for trishtren

Hey, i googled around for a solution but seem unable to come up with a reasonable solution to the problem of passing a class as a parameter. I wish to mimic the syntax used in java like below : setPenColor(new Color(255, 0, 255)); Where i can pass a new object …

Member Avatar for JamesCherrill
0
203
Member Avatar for saransh60

[code] class List(): def __init__(self,values=0): self.numb=values self.linker=self def add(self,values): self=self.linker self.numb=values self.linker=List() def show(self): while self!=self.linker: print self.numb self=self.linker [/code] In main call i want some thing like this [code] list1=List() list1.add(43) #i want to add numbers to liked list node like this list1.add(22) list1.add(938) list1.show()#Then retrieve it from the …

Member Avatar for jLocke
0
277