v0.8.13 (Troubling Times) active on Google Play

Useful links
Source code of the game - Contribution guide - ATCS Editor - Translate the game on Weblate - Example walkthrough - Andor's Trail Directory - Join the Discord
Get the game (v0.8.13) from Google, Github, F-Droid, our server, or itch.io

Highscore

A place for general discussion about the content and gameplay of Andor's Trail.
Post Reply
User avatar
Antison
Posts: 5818
Joined: Mon Mar 28, 2011 11:33 pm
android_version: 14 - Android 14
Location: A home without a beagle is just a house

Re: Highscore

Post by Antison »

Pyrizzle wrote:I decided to go for the RoL instead of trying to climb the Highscore list more. It takes so much longer to level in the Kazul Caverns than in the Iqhan Caves.

I did go up quite a few levels since getting the ROLS and leaving the gargoyle caves. I can't wait to see where i end up.
That's the truth. Took me a looooong time to level-up while looking for the GoLF. Grinding for the RoL is not as bad as far XP, but is no Iqhan cave.
"A home without a beagle is just a house"
mirajp1
Posts: 348
Joined: Sat Oct 08, 2011 10:53 am
android_version: 2.3 - Gingerbread
Location: Iqhan caves-grinding and only grinding :P

Re: Highscore

Post by mirajp1 »

Pyrizzle wrote:I decided to go for the RoL instead of trying to climb the Highscore list more. It takes so much longer to level in the Kazul Caverns than in the Iqhan Caves.

I did go up quite a few levels since getting the ROLS and leaving the gargoyle caves. I can't wait to see where i end up.

same here.
its better to be less overpowered :P
Logic:
Lvl: 38, XP: 1006224, Gold: 69410, RoLS: 0, ElyR: 0, RoL: 0, GoLF: 1, ChaR: 0, SHAF: 0
HP: 83, AC: 219%, AD: 24-30, AP: 3, BC: 55%, DR: -1, CC: 22%, CM: 3
Restore HP/Kill: 2

currently affected by rotworm :D
Pyrizzle
VIP
Posts: 6435
Joined: Sat Jun 25, 2011 1:00 am
android_version: 6.0 - Marshmallow
Location: Fire Nation HQ

Re: Highscore

Post by Pyrizzle »

mirajp1 wrote:
Pyrizzle wrote:I decided to go for the RoL instead of trying to climb the Highscore list more. It takes so much longer to level in the Kazul Caverns than in the Iqhan Caves.
I did go up quite a few levels since getting the ROLS and leaving the gargoyle caves. I can't wait to see where i end up.
same here.
its better to be less overpowered :P
I don't care about being overpowered, i just wanted to get a RoL and change my location from the Iqhan Cave, it was getting too redundant.
---------------------------------------------------------------------------------------

Player Name:Pyro
Lvl:24XP:244KAP:2/10HP:80AC: 189%AD:13-21CHS:-6CM: 0BC: 20%DR:2
IF:2Reg:2FSDW:1

May Elythara bless you and light your path!

---------------------------------------------------------------------------------------
User avatar
Antison
Posts: 5818
Joined: Mon Mar 28, 2011 11:33 pm
android_version: 14 - Android 14
Location: A home without a beagle is just a house

Re: Highscore

Post by Antison »

Samuel wrote:

Code: Select all

Highscore Table

The Highscore will be sorted by Level, XP, Gold, Name in this order.
[code]XP = Experience
RoLS = Rings of Lesser Shadow
ElyR = Elytharan redeemer
RoL = Rapier of lifesteal
ChaR = Chaosreaper
GoLF = Gloves of life force
ShaF = Shadowfang
HP = Hitpoints
AC = Attack chance
AD = Attack damage
AP = Attack cost
CC = Critical hit chance
CM = Critical multiplier
BC = Block chance
DR = Damage resistance
If you want to join this list or update your entry, just put your current stats into your signature.
I wrote a script that processes the signatures, so the stats need to have the following format:

Code: Select all

Level: 47, Experience: 1962090, Gold: 315318, RoLS: 1, ElyR: 0, RoL: 0, ChaR: 0, GoLF: 0, ShaF: 0
Hitpoints: 75, Attack chance: 186%, Attack damage: 31-35, Attack cost: 3, Critical hit chance: 5%, Critical multiplier: -, Block chance: 33%, Damage resistance: 1
You may also use the following abbreviations:

Code: Select all

Lvl: 47, XP: 1962090, Gold: 315318, RoLS: 1, ElyR: 0, RoL: 0, ChaR: 0, GoLF: 0, ShaF: 0
HP: 75, AC: 186%, AD: 31-35, AP: 3, CC: 5%, CM: -, BC: 33%, DR: 1
There is no need to order the entries. You may also use other separators like ";", "~" or a linebreak to separate the entries. (instead of a ",")
Samuel,

In order to reduce the # of characters used in my signature, I was thinking about putting the larger numbers into a #X notation. Example, 22,250,000 XP would be listed as 22.25M.
Does the script or could the script support this? I don't care if the high score list showed my XP as "22.25M" instead of 22,250,000
Amounts in the thousands could be displayed with the # followed by a 'k', such that 5,000 can be entered as 5k or 5K.
I wanted to do the same with the gold as well. What do you think?
"A home without a beagle is just a house"
Samuel
VIP
Posts: 655
Joined: Wed Feb 23, 2011 3:35 pm
android_version: 2.2

Re: Highscore

Post by Samuel »

tek wrote:Samuel,

In order to reduce the # of characters used in my signature, I was thinking about putting the larger numbers into a #X notation. Example, 22,250,000 XP would be listed as 22.25M.
Does the script or could the script support this? I don't care if the high score list showed my XP as "22.25M" instead of 22,250,000
Amounts in the thousands could be displayed with the # followed by a 'k', such that 5,000 can be entered as 5k or 5K.
I wanted to do the same with the gold as well. What do you think?
This did already work for "k" previously. I added code now for "m" to work.

A trailing single letter ("k" or "m") after a number is replaced by 3 or 6 zeros:

Code: Select all

4k = 4000 - works
10m = 10000000 - works
22.25M = 22.25000000 - so it doesn't work as expected
IMO if you have 2999999 Gold you may write 2m Gold, but it would be cheating to write 3m gold. (write 2999k if you like)
Last edited by Samuel on Tue Dec 20, 2011 9:24 pm, edited 1 time in total.
Level: 101, XP: 18780586, Gold: 358739
HP: 398, AC: 303%, AD: 84-95, AP: 4, ECC: 12, CM: -, BC: 13%, DR: 0
RoLS: 2, ElyR: 1, RoL: 1, ChaR: 1, GoLF: 1, ShaF: 1, SRoV: 2, VSH: 1, WMC: 0, GoW: 0
Chest_Rockfield
Posts: 530
Joined: Thu Jul 07, 2011 1:05 am
android_version: 2.3 - Gingerbread
Location: Impeached former President of the Too cool for a RoLS Club. ;)

Re: Highscore

Post by Chest_Rockfield »

Samuel wrote:
IMO if you have 2999999 Gold you may write 2m Gold, but it would be cheating to write 3m gold. (write 2999k if you like)
Or just kill any single thing in the game... I always round down on mine and leave 000 at the end of my gold and exp because I was sick of updating something so menial.
Lvl: 162, XP: 77,249,000, Gold: 2,508,000 RoLS: 0, ElyR: 0, RoL: 0, ChaR: 18, GoLF: 0, ShaF: 2
HP: 517, AC: 333%, AD: 60-61, AP: 3, CC: 90%, CM: 3, BC: 218%, DR: 0, BMP: 4k+
Chest_Rockfield
Posts: 530
Joined: Thu Jul 07, 2011 1:05 am
android_version: 2.3 - Gingerbread
Location: Impeached former President of the Too cool for a RoLS Club. ;)

Re: Highscore

Post by Chest_Rockfield »

I saw this was last updated by Samuel and got pretty excited. Thought maybe it was update day! (It's been 16 days since update, I believe the same number between the last update and the one before.)
Lvl: 162, XP: 77,249,000, Gold: 2,508,000 RoLS: 0, ElyR: 0, RoL: 0, ChaR: 18, GoLF: 0, ShaF: 2
HP: 517, AC: 333%, AD: 60-61, AP: 3, CC: 90%, CM: 3, BC: 218%, DR: 0, BMP: 4k+
Samuel
VIP
Posts: 655
Joined: Wed Feb 23, 2011 3:35 pm
android_version: 2.2

Re: Highscore

Post by Samuel »

Update.

Banlist: neil

Chest_Rockfield wrote:I saw this was last updated by Samuel and got pretty excited. Thought maybe it was update day! (It's been 16 days since update, I believe the same number between the last update and the one before.)
Here you go.


The current stats need to have the following format:

Code: Select all

Level: 47, Experience: 1962090, Gold: 315318, RoLS: 1, ElyR: 0, RoL: 0, ChaR: 0, GoLF: 0, ShaF: 0
Hitpoints: 75, Attack chance: 186%, Attack damage: 31-35, Attack cost: 3, Critical hit chance: 5%, Critical multiplier: -, Block chance: 33%, Damage resistance: 1
You may also use the following abbreviations:

Code: Select all

Lvl: 47, XP: 1962090, Gold: 315318, RoLS: 1, ElyR: 0, RoL: 0, ChaR: 0, GoLF: 0, ShaF: 0
HP: 75, AC: 186%, AD: 31-35, AP: 3, CC: 5%, CM: -, BC: 33%, DR: 1
Level: 101, XP: 18780586, Gold: 358739
HP: 398, AC: 303%, AD: 84-95, AP: 4, ECC: 12, CM: -, BC: 13%, DR: 0
RoLS: 2, ElyR: 1, RoL: 1, ChaR: 1, GoLF: 1, ShaF: 1, SRoV: 2, VSH: 1, WMC: 0, GoW: 0
Chest_Rockfield
Posts: 530
Joined: Thu Jul 07, 2011 1:05 am
android_version: 2.3 - Gingerbread
Location: Impeached former President of the Too cool for a RoLS Club. ;)

Re: Highscore

Post by Chest_Rockfield »

Thank you! Didn't know how much longer I could keep up that insane grinding. Wanted it to be my best update ever. Basically doubled my total experience two updates in a row and gained more experience than the other 4 member of the top 5 combined for a total of 18.5M in 16 days. That's just ridiculous. I seriously am a complete loser with no life. I better go to the Fallhaven Tavern and introduce myself at ATA.

Does it take a long time to update? I hope me questioning an update wasn't an imposition.

Also, what does "Banlist" mean?
Lvl: 162, XP: 77,249,000, Gold: 2,508,000 RoLS: 0, ElyR: 0, RoL: 0, ChaR: 18, GoLF: 0, ShaF: 2
HP: 517, AC: 333%, AD: 60-61, AP: 3, CC: 90%, CM: 3, BC: 218%, DR: 0, BMP: 4k+
User avatar
Antison
Posts: 5818
Joined: Mon Mar 28, 2011 11:33 pm
android_version: 14 - Android 14
Location: A home without a beagle is just a house

Re: Highscore

Post by Antison »

Samuel wrote:
tek wrote:Samuel,

In order to reduce the # of characters used in my signature, I was thinking about putting the larger numbers into a #X notation. Example, 22,250,000 XP would be listed as 22.25M.
Does the script or could the script support this? I don't care if the high score list showed my XP as "22.25M" instead of 22,250,000
Amounts in the thousands could be displayed with the # followed by a 'k', such that 5,000 can be entered as 5k or 5K.
I wanted to do the same with the gold as well. What do you think?
This did already work for "k" previously. I added code now for "m" to work.

A trailing single letter ("k" or "m") after a number is replaced by 3 or 6 zeros:

Code: Select all

4k = 4000
10m = 10000000
22.25M = 22.25000000 - so it doesn't work as expected
IMO if you have 2999999 Gold you may write 2m Gold, but it would be cheating to write 3m gold. (write 2999k if you like)
So is this a work in progress? Or are you not going to have the script support this?
"A home without a beagle is just a house"
Post Reply