answersLogoWhite

0

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

14y ago

What else can I help you with?

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:)


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


How do I manage an Int Field to Add and Subtract from the current value in PHP and a Database System?

The Original Question for this mentioned Point Systems in which the person wanted to reward Points to people that post. Points are the example I'll be using in this answer. I'm going to use #DATABASE SELECT{ and #DATABASE SELECT } to signify the beginnings and end of your Select query. #DATABASE UPDATE points for an Update query. I'm going to assume that the field is points and points is an INT(7) at least on the User table. Firstly the only unfamiliar function I'm going to use is (int). This simply converts a string to an Integer and is good practice to use. $point_opperation = 1; #1 for add, 2 for subtract $point_amount = 1; #The points you want to change. #DATABASE SELECT { (user table) $current_points = (int)$DATABASE['points']; $point_amount = (int)$point_amount; $vaild = false; If($point_opperation true){ $DATABASE UPDATE user table, change points to $newpoint_amount } #DATABASE SELECT } (user table) Simply change $point_opperation (use comment to understand the two options) and $point_amount to change the amount to change. Currently it'll add one point. Change the DATABASE SELECT and the UPDATE as Applicable.