What I Don't Like About Open Beta

The Brain Freezer
✔️ HL Verified
💻 Oldtimer
Joined
Sep 9, 2007
Messages
1,374
Best answers
0
Location
PT Porto
Yes turbo raises PL, but after you transform and take turbo off you would get the same casual PL.
 
Freelance Mappzor
✔️ HL Verified
🚂 Steam Linked
💻 Oldtimer
Joined
Nov 21, 2003
Messages
17,065
Best answers
0
Location
Stairing at the Abyss
In the past you could raise your PL like that. Since the PL was doubled and not added.

Meaning if you had 1 million PL and put on turbo, youd have 1.250.000 and then youd transform and get 2.500.000 Now you turn off turbo youd have 1.875.000

Now if you untransformed youd have less than what you started out with.

A similar princile would happen if you did it with the current system. Cause turning on turbo means you multiply your own PL by 1.25 ^^
 
New Member
Joined
Feb 2, 2003
Messages
123
Best answers
0
From a coding perspective, the transform method in whatever language is being used should only be linked to the non-turbo power level. Separate variables for a power level when turbo is activated and when it is not differentiated by boolean logic could aid in allowing the transform method to only use the original power level.

I just find that it would be more intuitive if one could transform while in turbo mode, though I do see your point that cheating would be an issue if the coding that I just mentioned wasn't implemented. The requirement to switch off turbo, transform, and turn turbo back on (especially when transformations become near-instant) is annoying.

Just speculating.

Edit: Hmm, I wasn't aware of the way that turbo and transforming augmented one's power level. That makes it interesting. I'm sure there's a work-around... let me think about it for a while.

Another Edit: Multiplying the non-turbo-power-level variable by 2 (or whatever transforming does) to get your transformed-power-level-variable should be static.

Say you start at 2.000.000 (two-million). This is your non-transformed-power-level variable (NTPLV). If you engage turbo, you multiply that by 1.25 getting 2.500.000. Your NTPLV would still be 2.000.000 from a coding perspective. If you transformed while turbo is activated, the method should only sync with your NTPLV, multiplying it by 2 (or whatever transforming does). This would give you a transformed-power-level-variable (TPLV) of 4.000.000. The turbo method would always have to sync with whatever your base power level is at the time, NTPLV or TPLV. Multiple instantiations of variables seems to be the key. If you transformed with turbo, your final power level wouldn't be 4.000.000, it would be 4.000.000 x 1.25 or 5.000.000, but when you took turbo off, you would still be at the correct 4.000.000.
 

Users who are viewing this thread

Top Bottom