او تفضل اختصرت عليك الاسطر
function isPlayerNameExists(thePlayer)
local isExists = dbQuery(database,"SELECT playerName FROM players WHERE playerName=?", getPlayerName(thePlayer))
local result = dbPoll(isExists,-1)
return result["playerName"][1]
end
الغلط هنا لانك اذ لقيت اسم الاعب ترجع قيمة false
يعني كاذبة او خاطئة
if value == getPlayerName(thePlayer) then
return false
else
return true
end
والتصحيح
return value == getPlayerName(thePlayer)
استبدل التصحيح بالخاطئ