hallo, liebe community
ich habe in der console eine warnung gefunden und weis aber nicht weiter, könnt ihr mir bitte helfen?
@ 'setMarkerColor' [Expected number at argument 5, got none]
hier die lua dazu,
local i = 1
local r = 255
local g = 0
local b = 0
setTimer(function()
if i == 1 then
r = r-5
g = g+5
if r <= 0 then i = 2 end
end
if i == 2 then
g = g-5
b = b+5
if g <= 0 then i = 3 end
end
if i == 3 then
b = b-5
r = r+5
if b <= 0 then i = 1 end
end
setMarkerColor(vipCafeEnter, r, g, b)
end, 100, -1 )