سلام عليكم
عندي مشكلة بكود آبي لمآ آكتب آمر وبعده كلآم
يروح للكنت - يحط آلتيكست دآ لكن آلمشكلة لمآ آرستر آلمود يروح آلتكست
آبي آربط آلكود بقآعدة بيآنآت عشآن مآ يروح آلتيكست لو رسترت آلمود
كودي :
-- # Server
executeSQLQuery( "CREATE TABLE IF NOT EXISTS text ( theText )" )
function globalMessage(the, cmd, ...)
local message = table.concat ( { ... }, " " )
local name = getPlayerName(the)
local acc = getPlayerAccount ( the )
local x, y, z = getElementPosition(the)
triggerClientEvent(root,'testt',root,message,x, y, z)
executeSQLQuery('INSERT INTO text (theText) VALUES(?)', message)
end
addCommandHandler("text", globalMessage)
-- # Client
addEvent ( "testt", true )
addEventHandler ( "testt", root,
function ( message, x, y, z )
addText(x,y,z,message,255,255,0)
end
)