Mods/Gameplay/Uncapped k-drive trick scoring/Scripts/Uncapped K-Drive Trick Scoring.pluto

9 lines
211 B
Plaintext
Raw Normal View History

2025-06-10 14:44:49 +02:00
repeat
local avatar = gRegion:GetLocalPlayerAvatar()
if avatar instanceof LotusVehicleAvatar then
if tc := avatar:GetTrickController() then
tc:SetMaxPointsPerCombo(99999)
end
end
until yield()