Jump to content
EN
Play

Forum

how to get cry but not a lot of xp


 Share

Recommended Posts

My solution might seem counter intuitive but it works (Proof is my above-average quality garage :P); just don't play. Since, whenever you play, you will earn exp no matter what. So, how to earn crystals then? Get acquainted with the forum. Take part in Newspaper Contests, Tanki Thinking Challenge and Community Events organised every few days. You're bound to earn a lot of crystals in the long run. Yeah, this method might seem boring or too long but it pays off. You can make an alt and play on that temporarily till you acquire crystals on your main.

Ayyy, this has my name all over it.

Share this post


Link to post
Share on other sites

Incorrect. Let's do some calculations:

(You can copy-paste this into ANYTHING that can run javascript or go to

https://www.khanacademy.org/computer-programming/teeest/5062370204450816)

 

//The amount of crystals you earn. Replace null with any number.
var crystals = "null";
//Whether premium and beginner's pass are on or off. Replace null with "true" or "false".
var premium = "null";
var beginner_pass = "null";
 
//The code. Don't change this.
var percent = 100;
if (premium === true) {
    percent = percent + 100;
}
 
if (beginner_pass === true){
    percent = percent + 100;
}
 
crystals *= percent;
 
var draw = function() {
background(0, 0, 0);
text(crystals, 200, 200, 20, 20);
};

 

It's +100%, not x2. And you add it to the INITIAL 100%

It would be easier to just come up with a formula

Share this post


Link to post
Share on other sites

 Share

×
×
  • Create New...