Nem a dxDrawText-nek adsz meg max. hosszúságot.
Másolok a te telefonos scriptedből:
addEventHandler(\"onClientClick\", root, function(gomb, allapot, absX, absY)
if allapot == \"down\" and gomb == \"left\" then
if lap == 2 then
if dobozbaVan (screenW * 0.8490, screenH * 0.5574, screenW * 0.8885, screenH * 0.5870, absX, absY) then --1
telszam = telszam .. 1
end
end
end
end)
Ebbe raksz egy string.len() -t
addEventHandler(\"onClientClick\", root, function(gomb, allapot, absX, absY)
if allapot == \"down\" and gomb == \"left\" then
if lap == 2 then
if dobozbaVan (screenW * 0.8490, screenH * 0.5574, screenW * 0.8885, screenH * 0.5870, absX, absY) then --1
if string.len(telszam) < 10 then
telszam = telszam .. 1 -- így max. 10 szám lesz benne
end
end
end
end
end)