Mods/Gameplay/Uncapped k-drive trick scoring/Scripts/Uncapped K-Drive Trick Scoring.pluto
2025-06-10 14:44:49 +02:00

9 lines
211 B
Plaintext

repeat
local avatar = gRegion:GetLocalPlayerAvatar()
if avatar instanceof LotusVehicleAvatar then
if tc := avatar:GetTrickController() then
tc:SetMaxPointsPerCombo(99999)
end
end
until yield()