Affichage des articles dont le libellé est game. Afficher tous les articles
Affichage des articles dont le libellé est game. Afficher tous les articles

jeudi 27 mars 2014

Nexus 7 as OUYA [Portable Game Console] topic




Hello everyone, I have a question about feasibility, and the likes. This is what I want to do: Run OUYA natively on my Nexus 7 [2013]. I heard there are dual-boot options available for my Nexus 7, and I could just as easily add external storage with meenova, slap on a cheap case, stick on a GameKlip to it, and wala.

I figure if I sell my OUYA, I'd be able to buy everything with that money that I need to get my set-up going. One problem, I can't find an OUYA rom anywhere. All I can find are hacks and tweaks to get the OUYA launcher going. I don't want that. I want to run the OUYA flavor of android, natively, and solely, giving it full-use of my 2GB ram available.

Is this possible? Does a native OUYA rom exist for any device, are there any plans to make one/keep it up? I loved the idea of OUYA initially, but I hate it now. It's just staying there, and I never use it. Seeing Ben Heck's portable OUYA inspired me to look for an alternative option. He said something like, "sure we could've taken a tablet and slapped a controller onto it, but we wanted to make things more difficult and hack it." Then I thought to myself, how about we don't make things more difficult, and lemme try to find a way to port this controller-centric experience to my tablet. The only thing I love about OUYA at this point is the fact that over 700+ andriod games exist that not only work, but work better with a controller.





mercredi 26 mars 2014

[Q] game issue topic




I have looked around the web and i currently still haven't found a soloution for this.
Recently I play many games like call of mini, frontline commando 2 which both is excellent. the problem is the game works fine but the graphic on the people seems distorted. (Images attached below)
Originally the player should textured nicely but it seems all black and grey:

Can anyone help me








Attached Thumbnails


Click image for larger version<br/><br/>Name:	shot_2014-03-26_20-52-15.jpg<br/>Views:	N/A<br/>Size:	71.5 KB<br/>ID:	2652110
 

Click image for larger version<br/><br/>Name:	shot_2014-03-26_20-52-47.jpg<br/>Views:	N/A<br/>Size:	66.7 KB<br/>ID:	2652111
 
















lundi 24 mars 2014

Has anyone found a bluetooth game controller that works? topic




PS3 ones require a supported adapter, as well as wii motes, most made for android tablets require drivers that microsoft can't find.

Has anyone been successful in finding a bluetooth game controller that works with any adapter and has drivers readily available.





mardi 18 mars 2014

google play game service in a non game app ? topic




Can be possible to implement google play game services in one app that is not going to be submitted like a game?

Thank you!





lundi 17 mars 2014

Game cih or what ever topic




I read somewhere you can't use game cih with the note 3 but I'm wondering if there is an app I can use with it so I can keep playing candy crush! Damn lives keep getting me!

Sent from my SM-N900P using xda app-developers app





dimanche 16 mars 2014

p6 - game data download ! topic




i searched every where for some of games like real racing and ...

i cant find the games with game data . where can i find hd games + data for my huawei p6 ??





mercredi 12 mars 2014

My "Game" In Progress. (Very Simple) topic




So for awhile I have been working on this little game of mine which is definitely no where near completion but I am at a standstill. For whatever reason, I am getting these compiler errors for things that I cannot find. I have searched over the code countlessly and I have yet to find the error. Ignore the errors that aren't being recognized by the compiler because I am working on those. They arent compiler errors but personal errors. Anyway, here is the code and the errors. If someone could help me that would be great.

CODE:

#include "stdafx.h"
#include <iostream>

using namespace std;
int healthamount2 = 100;

int strength = 50;


class Player//*****************************DECLARATION OF CLASS "PLAYER"***********************************************************
{

public:

Player(int z, int c);//start strength and starthealth

void Fireball(int healthamount2);
void Lightningbolt(int healthamount2);
void Whirlwind(int health);
void heal1(int healthamount1);
void gainEXP(int EXP);



int HP;
int EXP;
int healthamount1;
};

class Ogre//*************DECLARATION OF CLASS "OGRE"*********************************************************************************
{
public:

Ogre(int x, int y);//startHealth and startStrength

void attack();
void heal(int healthamount2);

public:


int strength;
int healthamount2;

};

int main()//****************MAIN FUNCTION********************************************************************************************
{
Ogre abe(100, 50);
abe.attack();
abe.heal(10);

//PLAYER CLASS

Player mage (100, 100);
mage.Fireball(healthamount2);
mage.Lightningbolt(healthamount2);
mage.Whirlwind(healthamount2);
mage.heal1(10);
mage.gainEXP(20);

char f;
cin >> f;
return 0;
}

Ogre::Ogre(int startHealthamount2, int startStrength)://**********USE OF FUNCTIONS**********************************************************
strength(startStrength), healthamount2(startHealthamount2)
{
}


void Ogre::attack()
{
cout << "Get ready to eat my gosh damn dust!" << "::Stength = ::" << strength << endl;
}

void Ogre::heal(int health)
{
cout << "Ogre has healed himself!" << "::Current health = ::" << healthamount2 + 10 << endl;
}


Player::Player(int startHealthamount1, int startEXP)://************USE OF FUNCTIONS OF PLAYER CLASS*******************************************
EXP(startEXP), healthamount1(startHealthamount1)
{
}

void Player::Fireball(int healthamount2)
{
cout << "Player has attacked Ogre with Fireball! Ogre's Current health = " << healthamount2 - 25 << endl;
}

void Player::Lightningbolt(int healthamount2)
{
cout << "Player has attacked Ogre with Lightningbolt! Ogre's Current health = " << healthamount2 - 30 << endl;
}

void Player::Whirlwind(int healthamount2)
{
cout << "Player has attacked Ogre with Whirlwind! Ogre's Current health = " << healthamount2 - 5 << endl;
}

void Player::gainEXP(int EXP)
{
if(healthamount2 = 0)
cout << "Player has gained EXP! Current EXP = " << EXP + 20 << endl;
else
cout << "Player has gained NO EXP! Sowwy, better luck next time :(" << endl;
}

void Player::heal1(int health1)
{
cout << "Player has healed himself! Current health = " << healthamount1 + 10 << endl;
}
//*****************************************************************************************************************END**************

//************************************MADE ENTIRELEY FROM MEMORY OF SOUPER HAXXOR :)***************************************************

END OF CODE

ERRORS:

1>------ Build started: Project: Practice, Configuration: Debug Win32 ------
1> Player.cpp
1>c:\users\ethan's muchacho\desktop\c+++\practice\practice\player.cpp(33): error C2059: syntax error : ')'
1>c:\users\ethan's muchacho\desktop\c+++\practice\practice\player.cpp(40): error C2597: illegal reference to non-static member 'Player::healthamount'
1>c:\users\ethan's muchacho\desktop\c+++\practice\practice\player.cpp(41): error C2761: 'void Player::Fireball(void)' : member function redeclaration not allowed
1>c:\users\ethan's muchacho\desktop\c+++\practice\practice\player.cpp(41): fatal error C1004: unexpected end-of-file found
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========

*******************************END OF ERRORS******************


So yeah... I don't know what's going on so could someone help me? Thanks





lundi 10 mars 2014

[Help] Log something inside game module. topic




i need log something inside a game .dll.

example:


Code:


if( game module )
//... log return address of function


I can just use the module base address to check if return address is in module range our what ?

any help will be great.





dimanche 9 mars 2014

Game Project topic




Hi. Im a teenager and i had this one idea of making a game for android. I cant pay u but im sure the game will be rentable so we can then split earns. I have a idea for a great game and i think it will work. Besides that its a simple app to make.
I hope someone can help me

Sent from my bq Aquaris using xda app-developers app





vendredi 7 mars 2014

computer game problem topic




Edwin wrote:

> Hey guys been having some issues with PC games lately. The symtoms are when
> playing certain games it will freeze for like 8 seconds (no mouse movement
> everything just frozen) Then everything comes back to life but with strange
> graphics. Not distorted, just more like different colors and you can see
> boxes around objects especially with a 3rd person shooter you can see the
> box around the characters feet. Same thing with anything with letters in
> it. Any writing on the screen is suddenly replaced with colored boxes.
>
> Ive changed out the graphic drivers and installed older drivers I get the
> same thing thruout most of my games. Sometimes the games will play fine,
> and other times the games goes into this mode usually after about 10
> minutes of playing. It seems like only graphic intense games seem to do
> this but it has also done this with lower end older games.
>
> I did a virus scan and malware scan, took out and reaseated graphics card,
> and main memmory. still no avail. Ran some program called "Video card
> stability test" (thinking it was the graphics card) and the thing ran with
> its internal fan running pretty high and it ran for a whole hour with no
> freeze. Also decided to run the fan @ 80% with "Riva Tuner" while playing a
> game. The game froze and came back after about 10 minutes.
>
> This problems only seems to happen with games. Not with internet videos or
> while watching Netflix.
>
> Ive updated everything and begining to wonder if something is interfering
> with memory and causing this freeze. (sort of like when your dvd drive
> scans for whats in the drive when first turned on)
>
> I havent done memtest yet because I assume if it can run Netflix or other
> programs without any problems, I figure its not the memory. My computer is
> old but the games being played are from the same timeline as when this
> computer specs were around.
>
> My computer specs are:
>
> Asus P5LD2 mother board
> Pentium 4, 3.8GHz (clocked down to 3.2GHz due to heat problems)
> 4 gigs of Duel channel DDR 2 ram (only 3 being used due to xp)
> Windows xp home sp3
> BFG Tech Graphics card 1024MB GeForce GTX 285
> 2 298 Gig sata Hard drives
> Seasonic 650 watt power supply
> Memorex DVD+-RAM 525G drive
> 3.5 floppy disc drive
>
> yes I know its old and its time to upgrade, but the system has worked fine
> over the years and yes I do yearly full installs of the OS and blow out the
> dust of the inside of the computer. Appreciate any help.


Gaming code is some of the worst. They skip graceful recovery or
boundary checking because that takes time and would slow the game.
Sometimes you have to find the right mix between a game and video
driver, and often the latest video driver is not the best one for game.
As they tweak the video driver, they often encompass problems with newer
games while sacrificing compatibility with older games. If you have
video games that span a decade, or more, you're likely not to find a
best video driver for all of them.

What is the maximum resolution of the monitor? What type of monitor
(LCD or CRT)? At what resolution are you running the game? Your
hardware may not support the higher resolution you want to use so you'll
have to configure the game to run at a lower resolution.

You don't mention the games so no one here can check what are the
minimum and recommended hardware specs for them. Also, some games work
better with nVidia than with AMD/ATI and visa versa.

If you're overclocking anything then stop that and test. Why would you
reduce or limit the video card's fan speed to 80%? It may need to run
at 100% to dissipate the heat. If it cannot get rid of the heat then it
may throttle itself to lower its performance which can produce
artifacts, like the pixelation you noted. Don't do any management of
the video fan speed. Let it run at full speed and then test if the
games still exhibit the problem. If you're using Riva to up the fan
speed to make it run faster then the card may have its own temperature
management which is flawed and making the fan spin too slow. If the
card won't run its fan at 100% then use Riva to run at 100% ... and make
sure airflow through the case and PSU are not blocked. That isn't just
from dust and lint but also have flat cables oriented the wrong way so
they block airflow or having a daughtercard in a slot right next to the
extra fat video card.

> ---
> This email is free from viruses and malware because avast! Antivirus protection is active.
> h**p:// www. avast. c*m


Your choice of antivirus software is spamming the newsgroup. "---" is
not a valid signature block delimiter line (which is "-- \n", or dash,
dash, space, newline). That means their spam is in the body of your
post. Your posts are spam because they added it. Go into the config
options in your program and disable the one that appends their spam onto
your posts.





jeudi 6 mars 2014

[Q] One Device, the same game but Different Accounts? topic




Hello.

I've got a question.

Is there a way to handle two different accounts from a game, on ONE Android Device ?!

My sister and i using the same Tablet and play Hobbit: King. of Middle-earth.
Is there a way that we both can play on the tablet this game, with different accounts?

Do we have to Re-Install the game every time?

Thanks for answer :).





dimanche 23 février 2014

what is the best game u played so far on this tablet? topic




Mine is clash of clans....works great on high resolution
Csr racing too





Rabbit Smart School - Education game for your kids topic




Hi all,
We are Applus Studio very proud to introduce you one of our products, Rabbit Smart School, an education game for your kids.
Rabbit Smart School is a cool game for kids, which is a collection of many educational games, help kids learn math and training memory when playing. Features:
*8 different games that teach kids about colors, letters, counting, differences, and matching.
*Lovable animated rabbit helps kids play the games.
*Lovely design style for kids
*Funny sounds help kids to understand and play each game
*Free to Play!!!





Download game from Google Play: https://play.google.com/store/apps/d...pplus.vn&hl=en
Hope to receive your feedback after using our game :D





[free game] bird dash topic





Flap the wings and off you go... Bird Dash an unlimited game play casual game from ThemeBowlApp.The game consists of cute little birds.Help those dashing birds to cross without touching obstacles.Play in different scenarios.

Features:

UNLIMITED GAME PLAY
COLLECT COINS
PLAY IN DIFFERENT SCENARIOS
PLAY WITH 6 DIFFERENT BIRDS
UNLOCK MEDALS AND PLAY WITH DIFFERENT CHARACTER
USE COINS TO REVIVE
SHARE YOUR SCORE ONLINE AND COMPETE


DOWNLOAD:
Bird Dash





vendredi 21 février 2014

[Question] Game Closes When I press Insert topic




Dont Worry,

Im not a newbie when it comes to game hacking but unfortunatley I cant find the DLL that will let me take the insert pressing command off my game... AfterMathZ
any help please?





mercredi 29 janvier 2014

[Discuss] Getting the length of a vector in game. topic




If you have a 3 dimensional vector say from my origin to the players origin how would you get that and display it on screen?

I have the coordinates for me and the player.

I need some search terms so I can google it and look it up in the search here on the forum. I'm not sure how to word what I'm looking for.

thanks...



...





mardi 28 janvier 2014

[Q] How to install game in external memory 16 gb topic




Dear Expert,
I have rooted my Android Mobile Karbonn A29 with FrameRoot its successfully rooted, but i want to install game like FIFA 14 in my mobile it does not have sufficient internal memory, kindly give me the guide how to make my external memory which is 16 gb to act as internal memory so that i can install large game.





how to hack teenpatti game chups topic




anyone have teenpatti game trick