answersLogoWhite

0

How do you get points int heroes of gaia?

Updated: 8/18/2019
User Avatar

Wiki User

13y ago

Best Answer

if your talking about shop points you have to buy them, but if you are talking about fame points just scroll over your amount of fame and it tells you pretty well.

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you get points int heroes of gaia?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you get the fallen monk on heroes of gaia?

You cannot get fallen monk, the game just created this creature for you to battle and gain experience.


How would you read int const p?

int const *p declares a 'p' pointer, that points to a constant integer


How many points do you need to pass lvl 2 in rhythm heroes?

about 2700 points


How do you write a program in c plus plus using class and objects to represent points in plain as polar coordintes?

The following lightweight class will provide the minimum requirement of a generic point class. class point { private: int m_x; int m_y; public: point(int x=0, int y=0): m_x(x), m_y(y) {} void move(int x, int y){ m_x=x; m_y=y; } void set_x(int x){ m_x=x; } void set_y(int y){ m_y=y; } int get_x() const { return( m_x ); } int get_y() const { return( m_y ); } }; From this you can create individual points, arrays/vectors or lists of points. Of course you'll also have to implement some means of drawing and erasing points on screen which means you'll also need a graphics library. And since all graphics libraries will include some method of representing points on a plain, there is no need to "roll your own" point class, you can simply use the one provided by your library.


Is there any games like travian?

Heroes of Gaia. try it over at gpotato.com or at http://heroesofgaia.gpotato.com/ its similar to travian, at a faster pace and much more


What is pointer to pointer with examle?

int main (int argc, char **argv):Hereargv is a pointer to a pointer (points to the first element of a pointer-array)argv[0] is a pointer (points to the first character of a string)argv[0][0] is a character


How do you unlock new heroes in Age of Empires mythology for the ds?

Complete the campaign to unlock the heroes, available to buy w/myth points.


What are some of Columbia's points of interest?

some of the points of int rest in Columbia are food ,land use,religion,and or the language. thank you for being interested! i hope you enjoy your answer:)


Who is the Greek Goddess of Soil?

I am very surprised no one has answered this yet. Isn't it obvious? She is Gaea. Haven't you ever read the Percy Jackson and Heroes of Olympus series?


30 examples of variables?

int n1; int n2; int n3; int n4; int n5; int n6; int n7; int n8; int n9; int n10; int n11; int n12; int n13; int n14; int n15; int n16; int n17; int n18; int n19; int n20; int n21; int n22; int n23; int n24; int n25; int n26; int n27; int n28; int n29; int n30;


Why float is not declared as int in java?

Because float is used for storing floating point numbers (values with decimal points and fractions) whereas int is used to store integer numbers (whole number) Storing a float in a int will result in loss of data which is not desirable and hence it is not done.


How does java secures the code?

java is securejava uses the pointer internally. programer cannot use the pointer in our program explicitly. due to use of pointers information may be lostex-int *p;int a=56;int b=98;p=&a;p=&b;in above program first time pointer points the a value and in next line p points the b value, so here a information is lost