Author Topic: I did it boys.  (Read 2509 times)

0 Members and 1 Guest are viewing this topic.

DaTheif

  • Newbie
  • *
  • Posts: 8
  • Reputation: +0/-0
I did it boys.
« on: January 15, 2021 11:11 am CST »
I've reached Remort Level 15000.
I can mine Keldrinite at level 1.
I have over 28 million HP. So much hp that deus claims I'm dead.

I did not do this manually... I don't have that kind of time. I wrote an auto remort script that allowed me to keep remorting day and night for a couple years. Just had to make sure I didn't get disconnected or the server didn't crash.  Both happened many times.

Just thought I'd share my nerdy accomplishment with whoever comes across this.

https://imgur.com/a/iY7Rtv9

Vivaxx

  • Gnoll Fighter
  • **
  • Posts: 89
  • Reputation: +2/-2
Re: I did it boys.
« Reply #1 on: January 16, 2021 12:24 am CST »
Congrats. I remember when it was a big deal that eViL was RL ~320 back in 2002.

Are people still playing these days?
Jonah, PCRPG player since 2002.

DaTheif

  • Newbie
  • *
  • Posts: 8
  • Reputation: +0/-0
Re: I did it boys.
« Reply #2 on: January 16, 2021 05:15 pm CST »
Not really, I've been the only one online for months.  There have been a handful of people playing over the last couple years though.  Would be cool to get a few more people in here once in a while.

Riddle

  • Gnoll Fighter
  • **
  • Posts: 72
  • Reputation: +2/-4
Re: I did it boys.
« Reply #3 on: February 8, 2021 01:02 am CST »
Congrats ! How many years did it take?!

Particle

  • Chief Codemonger
  • Administrator
  • Centurian Lord
  • ********
  • Posts: 5,904
  • Reputation: +20/-4
    • Particle's Custom RPG
Re: I did it boys.
« Reply #4 on: February 16, 2021 10:11 pm CST »
Well I'm impressed.  =)  That's absolutely nuts.
As a point of history:  Our last server clear was on September 27, 2004.  That is 4963 days ago (13.6 years) as of today.

If you're visiting after a long hiatus and have forgotten your password, try emailing me via the support form at http://www.pcrpg.org.

If your character is from after the 2004 clear but appears to have been deleted or reset, chances are it was caught in one of the inactive account purges over the years.  Backups were made before such events, so try the support form.

DaTheif

  • Newbie
  • *
  • Posts: 8
  • Reputation: +0/-0
Re: I did it boys.
« Reply #5 on: March 23, 2021 02:08 pm CDT »
Congrats ! How many years did it take?!

I believe it took just under 2 years of 24/7 remorting.
In actual time I think it was about 3 years since the server would go down, or I would crash, or go on vacation or something and not be near my machine.

Typically I'd just setup my script every few days again and let her run. And boy did she run. About 25-30 remorts a day depending if it got stuck or not.

It was a learning process in the beginning but over those few years I've smoothed out the script to where (almost) nothing can stop it from getting back on track and remorting again.


Well I'm impressed.  =)  That's absolutely nuts.

Thank you, sir!

All in all, I had a lot of fun writing the script. I love automation and writing AI's.

KoRo

  • Fat, Emo Robot
  • Centurian Lord
  • ********
  • Posts: 3,436
  • Reputation: +14/-6
Re: I did it boys.
« Reply #6 on: May 1, 2021 12:50 pm CDT »
That's awesome! I think I stopped around RL 5000. Like you, I wrote my own auto-remort script. I think I really learned how to start thinking like a programmer thanks to Tribes. That was a good challenge. I'm interested in hearing how you implemented yours, how you handled problems, checked your position, etc.

DaTheif

  • Newbie
  • *
  • Posts: 8
  • Reputation: +0/-0
Re: I did it boys.
« Reply #7 on: July 7, 2021 08:59 am CDT »
I handled most problems pretty simply by just resetting. I would check if I'm hitting the mobs or not by resetting the counter every time I got a "you hit x for x damage message". If the message wasn't seen for more than 60 seconds then I decided I was no longer close enough to get exp and would reset.  Missing them was also acceptable, as long as I'm in the room with the mobs, I would level up eventually.   Other than that, if anything went wrong I would reset. I did this by teleporting back to the entrance and walking again.

If I was bashed, I would start attempting recalling. Once recalled (It would always happen eventually, and usually quickly) I would teleport back and start killing again. 

Since there are 4 possible spawn points for tenebrous cavern, I made 4 routes that met up just inside the cave. Then had 1 route that got me into the part of the zone that the mobs were at. I checked position using #trackpack and would place a pack in a spot I couldn't be shoved to. This was the only thing I had to do manually. Set the pack, face north east and let er go.

There were a handful of other fixes I had to implement along the way. Being overweight, I'd drop coins at storage. If I had too much weight I would drop anything not necessary in my inventory. 

If you have any specific questions about it I'll check back here every so often. Or hit me up on discord Ty#2296
« Last Edit: October 13, 2021 01:45 pm CDT by DaTheif »

KoRo

  • Fat, Emo Robot
  • Centurian Lord
  • ********
  • Posts: 3,436
  • Reputation: +14/-6
Re: I did it boys.
« Reply #8 on: March 16, 2022 01:51 am CDT »
Nice, yeah I did something similar. A whoooole bunch of various checks and if one of them didn't pass -> reset and try again. Same deal with the 4 different spawn points. Never did get a bash reset working though. The challenge I was facing was that Tribes would periodically crash/disconnect from the server for no apparent reason. I couldn't get the script to work outside of the server, so i could never figure out how to have it reset the program. Nowadays of course I'd write a new script that operates entirely independently (.bat maybe? It'd be tricky but I might be able to do it in Python or C++).