9 lines
211 B
Lua
9 lines
211 B
Lua
repeat
|
|
local avatar = gRegion:GetLocalPlayerAvatar()
|
|
if avatar instanceof LotusVehicleAvatar then
|
|
if tc := avatar:GetTrickController() then
|
|
tc:SetMaxPointsPerCombo(99999)
|
|
end
|
|
end
|
|
until yield()
|