Advertisement



Go Back   Zune Boards > Zune Discussions > Zune Games > Download Completed Games

New Member?



 
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

Reply
 
LinkBack Thread Tools
Old 05-26-2008, 10:20 AM   #201 (permalink)
Experienced Zuner
 
Join Date: May 2008
Posts: 110
Reputation: 9
Default


yes it is still running


Edit
Should we start over?






ZuneMan4 is offline   Reply With Quote
Old 05-26-2008, 10:24 AM   #202 (permalink)
zB Programmer
Experienced Member
 
LedZepp's Avatar
 
Join Date: Mar 2007
Posts: 975
Reputation: 119
Default

Yea, click on the red circle and it should disappear, then exit the game, then click "play" button at the top of XNA, start a level and instead of getting it stuck now press to make the red circle, and try moving around with the touch pad




LedZepp is offline   Reply With Quote
Old 05-26-2008, 10:28 AM   #203 (permalink)
Experienced Zuner
 
Join Date: May 2008
Posts: 110
Reputation: 9
Default

Hey it worked that time here is what the box said

110.0


Does that sound right?



ZuneMan4 is offline   Reply With Quote
Old 05-26-2008, 10:30 AM   #204 (permalink)
zB Programmer
Experienced Member
 
LedZepp's Avatar
 
Join Date: Mar 2007
Posts: 975
Reputation: 119
Default

Ok good, now unclick the red circle but dont exit the game, press the same "play" button and your game should resume, get your paddle stuck now and click to make the red circle and try moving around with the touchpad




LedZepp is offline   Reply With Quote
Old 05-26-2008, 10:32 AM   #205 (permalink)
Experienced Zuner
 
Join Date: May 2008
Posts: 110
Reputation: 9
Default

Ok, I did that.



ZuneMan4 is offline   Reply With Quote
Old 05-26-2008, 10:34 AM   #206 (permalink)
zB Programmer
Experienced Member
 
LedZepp's Avatar
 
Join Date: Mar 2007
Posts: 975
Reputation: 119
Default

Did it not pause again?




LedZepp is offline   Reply With Quote
Old 05-26-2008, 10:34 AM   #207 (permalink)
Experienced Zuner
 
Join Date: May 2008
Posts: 110
Reputation: 9
Default

No it didn't.



ZuneMan4 is offline   Reply With Quote
Old 05-26-2008, 10:39 AM   #208 (permalink)
zB Programmer
Experienced Member
 
LedZepp's Avatar
 
Join Date: Mar 2007
Posts: 975
Reputation: 119
Default

Ok try this, in these 2 lines
Quote:
pPosition.X += MathHelper.Min(GamePad.GetState(PlayerIndex.One).T humbSticks.Left.X * 3.0f, 3.0f);
if (!gameStarted)
bPosition.X += MathHelper.Min(GamePad.GetState(PlayerIndex.One).T humbSticks.Left.X * 3.0f, 3.0f);
Replace the 3.0f with 2.0f where ever you see them and see if it gets stuck, you dont have to set the red circle for this




LedZepp is offline   Reply With Quote
Old 05-26-2008, 10:40 AM   #209 (permalink)
Experienced Zuner
 
Join Date: May 2008
Posts: 110
Reputation: 9
Default

should I start the game over?

Edit
Just in that line or both lines?

Edit again
Never mind

Last edited by ZuneMan4 : 05-26-2008 at 10:42 AM.



ZuneMan4 is offline   Reply With Quote
Old 05-26-2008, 10:41 AM   #210 (permalink)
zB Programmer
Experienced Member
 
LedZepp's Avatar
 
Join Date: Mar 2007
Posts: 975
Reputation: 119
Default

Yes, it wont let you edit the code while the game is playing




LedZepp is offline   Reply With Quote
Old 05-26-2008, 10:45 AM   #211 (permalink)
Experienced Zuner
 
Join Date: May 2008
Posts: 110
Reputation: 9
Default

Ya it got stuck again, should i have saved it before playing?



ZuneMan4 is offline   Reply With Quote
Old 05-26-2008, 10:47 AM   #212 (permalink)
zB Programmer
Experienced Member
 
LedZepp's Avatar
 
Join Date: Mar 2007
Posts: 975
Reputation: 119
Default

No it saves it when you click the play button. Hmm...




LedZepp is offline   Reply With Quote
Old 05-26-2008, 10:50 AM   #213 (permalink)
Experienced Zuner
 
Join Date: May 2008
Posts: 110
Reputation: 9
Default

Hey, I can keep helping you (or lack there of) for a little bit longer, otherwise I have to go in a little bit. I will check back in later, just PM me if you need help.
If you have anymore ideas right now I can help.



ZuneMan4 is offline   Reply With Quote
Old 05-26-2008, 10:53 AM   #214 (permalink)
zB Programmer
Experienced Member
 
LedZepp's Avatar
 
Join Date: Mar 2007
Posts: 975
Reputation: 119
Default

Try replacing the bolded values to 0f
Code:
pPosition.X += MathHelper.Min(GamePad.GetState(PlayerIndex.One).ThumbSticks.Left.X * 3.0f, 3.0f);
if (!gameStarted)
bPosition.X += MathHelper.Min(GamePad.GetState(PlayerIndex.One).ThumbSticks.Left.X * 3.0f, 3.0f);




LedZepp is offline   Reply With Quote
Old 05-26-2008, 10:55 AM   #215 (permalink)
Experienced Zuner
 
Join Date: May 2008
Posts: 110
Reputation: 9
Default

Should I keep the other ones at 2.0f or change them back to 3.0f?

Edit:

0f and not 0.0f?



ZuneMan4 is offline   Reply With Quote
Old 05-26-2008, 10:58 AM   #216 (permalink)
zB Programmer
Experienced Member
 
LedZepp's Avatar
 
Join Date: Mar 2007
Posts: 975
Reputation: 119
Default

Keep the others at 2.0f, it can jsut be 0f




LedZepp is offline   Reply With Quote
Old 05-26-2008, 10:59 AM   #217 (permalink)
Experienced Zuner
 
Join Date: May 2008
Posts: 110
Reputation: 9
Default

Should I play the game now?



ZuneMan4 is offline   Reply With Quote
Old 05-26-2008, 11:00 AM   #218 (permalink)
zB Programmer
Experienced Member
 
LedZepp's Avatar
 
Join Date: Mar 2007
Posts: 975
Reputation: 119
Default

Yea, try playing




LedZepp is offline   Reply With Quote
Old 05-26-2008, 11:03 AM   #219 (permalink)
Experienced Zuner
 
Join Date: May 2008
Posts: 110
Reputation: 9
Default

It got stuck again



ZuneMan4 is offline   Reply With Quote
Old 05-26-2008, 11:07 AM   #220 (permalink)
zB Programmer
Experienced Member
 
LedZepp's Avatar
 
Join Date: Mar 2007
Posts: 975
Reputation: 119
Default

Ok one last try before you go, replace those 2 lines with this
Quote:
if (GamePad.GetState(PlayerIndex.One).ThumbSticks.Lef t.X != 0)
{
pPosition.X += MathHelper.Min(GamePad.GetState(PlayerIndex.One).T humbSticks.Left.X * 3.0f, 3.0f);
if (!gameStarted)
bPosition.X += MathHelper.Min(GamePad.GetState(PlayerIndex.One).T humbSticks.Left.X * 3.0f, 3.0f);
}




LedZepp is offline   Reply With Quote
Reply


Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump


All times are GMT -8. The time now is 09:40 PM.

 
Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.2.0 RC8
vB Ad Management by =RedTyger=
(C) ZuneBoards 2006-2007
Copyright © 2006 - 2008 Zune Boards | About Zune Boards | Legal | A member of the Crowdgather Forum Community