SaedAmer Posted April 6, 2016 Posted April 6, 2016 انا صممت لوحة سبورت مساعده عاوز اضبيف كود يمسح الشات في الوحة و يكتب اسم الي مسح شكرا مقدما
SaedAmer Posted April 6, 2016 Author Posted April 6, 2016 انا صممت لوحة سبورت مساعده عاوز اضبيف كود يمسح الشات في الوحة و يكتب اسم الي مسح شكرا مقدما
iMr.WiFi..! Posted April 6, 2016 Posted April 6, 2016 الحين في شات جريد ليست ولا شات بوكس ؟؟ Experienced MTA developer for 4 years. | MTA خبرة 4 سنين في برمجة ليس عليك اسعاد الجميع , ولكن عليك بإن لا تؤذي أحداً =========You do not have to make everyone happy, But you should not hurt anyone Want to contact with me? Discord: JustCarry#2616 (Always there)Skype: Live:JustCarry10 (Not always)
iMr.WiFi..! Posted April 6, 2016 Posted April 6, 2016 الحين في شات جريد ليست ولا شات بوكس ؟؟ Experienced MTA developer for 4 years. | MTA خبرة 4 سنين في برمجة ليس عليك اسعاد الجميع , ولكن عليك بإن لا تؤذي أحداً =========You do not have to make everyone happy, But you should not hurt anyone Want to contact with me? Discord: JustCarry#2616 (Always there)Skype: Live:JustCarry10 (Not always)
YourMind Posted April 6, 2016 Posted April 6, 2016 guiGridListClear guiGridListAddRow getPlayerName guiGridListSetItemText
YourMind Posted April 6, 2016 Posted April 6, 2016 guiGridListClear guiGridListAddRow getPlayerName guiGridListSetItemText
iMr.WiFi..! Posted April 6, 2016 Posted April 6, 2016 شوف الويكي وسوي الكود ولو فيه غلط نساعدك Experienced MTA developer for 4 years. | MTA خبرة 4 سنين في برمجة ليس عليك اسعاد الجميع , ولكن عليك بإن لا تؤذي أحداً =========You do not have to make everyone happy, But you should not hurt anyone Want to contact with me? Discord: JustCarry#2616 (Always there)Skype: Live:JustCarry10 (Not always)
iMr.WiFi..! Posted April 6, 2016 Posted April 6, 2016 شوف الويكي وسوي الكود ولو فيه غلط نساعدك Experienced MTA developer for 4 years. | MTA خبرة 4 سنين في برمجة ليس عليك اسعاد الجميع , ولكن عليك بإن لا تؤذي أحداً =========You do not have to make everyone happy, But you should not hurt anyone Want to contact with me? Discord: JustCarry#2616 (Always there)Skype: Live:JustCarry10 (Not always)
YourMind Posted April 6, 2016 Posted April 6, 2016 -- client addEventHandler ("onClientGUIClick",clearButton, function () triggerServerEvent ("Cl",localPlayer,getPlayerName(localPlayer)) end ) addEvent ("CLEAR",true) addEventHandler ("CLEAR",root, function (name) guiGridListClear (gridName) rw = guiGridListAddRow (gridName) guiGridListSetItemText (gridName,rw,1,"**CLEARED BY "..name.."**",false,false) end -- server addEvent ("Cl",true) addEventHandler ("Cl",root, function (name) for i,k in ipairs (getElementsByType("player")) do triggerClientEvent (k,"CLEAR",k,name) end end )
YourMind Posted April 6, 2016 Posted April 6, 2016 -- client addEventHandler ("onClientGUIClick",clearButton, function () triggerServerEvent ("Cl",localPlayer,getPlayerName(localPlayer)) end ) addEvent ("CLEAR",true) addEventHandler ("CLEAR",root, function (name) guiGridListClear (gridName) rw = guiGridListAddRow (gridName) guiGridListSetItemText (gridName,rw,1,"**CLEARED BY "..name.."**",false,false) end -- server addEvent ("Cl",true) addEventHandler ("Cl",root, function (name) for i,k in ipairs (getElementsByType("player")) do triggerClientEvent (k,"CLEAR",k,name) end end )
SaedAmer Posted April 6, 2016 Author Posted April 6, 2016 -- client addEventHandler ("onClientGUIClick",clearButton, function () triggerServerEvent ("Cl",localPlayer,getPlayerName(localPlayer)) end ) addEvent ("CLEAR",true) addEventHandler ("CLEAR",root, function (name) guiGridListClear (gridName) rw = guiGridListAddRow (gridName) guiGridListSetItemText (gridName,rw,1,"**CLEARED BY "..name.."**",false,false) end -- server addEvent ("Cl",true) addEventHandler ("Cl",root, function (name) for i,k in ipairs (getElementsByType("player")) do triggerClientEvent (k,"CLEAR",k,name) end end ) ما ظبط
SaedAmer Posted April 6, 2016 Author Posted April 6, 2016 -- client addEventHandler ("onClientGUIClick",clearButton, function () triggerServerEvent ("Cl",localPlayer,getPlayerName(localPlayer)) end ) addEvent ("CLEAR",true) addEventHandler ("CLEAR",root, function (name) guiGridListClear (gridName) rw = guiGridListAddRow (gridName) guiGridListSetItemText (gridName,rw,1,"**CLEARED BY "..name.."**",false,false) end -- server addEvent ("Cl",true) addEventHandler ("Cl",root, function (name) for i,k in ipairs (getElementsByType("player")) do triggerClientEvent (k,"CLEAR",k,name) end end ) ما ظبط
iMr.WiFi..! Posted April 6, 2016 Posted April 6, 2016 --client addEventHandler ("onClientGUIClick",clearButton, function () name = getPlayerName(localPlayer) triggerServerEvent ( "Cl", localPlayer, name) end ) addEvent ("CLEAR",true) addEventHandler ("CLEAR",root, function (name) guiGridListClear (gridName) rw = guiGridListAddRow (gridName) guiGridListSetItemText (gridName,rw,1,"**CLEARED BY "..name.."**",false,false) end جرب Experienced MTA developer for 4 years. | MTA خبرة 4 سنين في برمجة ليس عليك اسعاد الجميع , ولكن عليك بإن لا تؤذي أحداً =========You do not have to make everyone happy, But you should not hurt anyone Want to contact with me? Discord: JustCarry#2616 (Always there)Skype: Live:JustCarry10 (Not always)
iMr.WiFi..! Posted April 6, 2016 Posted April 6, 2016 --client addEventHandler ("onClientGUIClick",clearButton, function () name = getPlayerName(localPlayer) triggerServerEvent ( "Cl", localPlayer, name) end ) addEvent ("CLEAR",true) addEventHandler ("CLEAR",root, function (name) guiGridListClear (gridName) rw = guiGridListAddRow (gridName) guiGridListSetItemText (gridName,rw,1,"**CLEARED BY "..name.."**",false,false) end جرب Experienced MTA developer for 4 years. | MTA خبرة 4 سنين في برمجة ليس عليك اسعاد الجميع , ولكن عليك بإن لا تؤذي أحداً =========You do not have to make everyone happy, But you should not hurt anyone Want to contact with me? Discord: JustCarry#2616 (Always there)Skype: Live:JustCarry10 (Not always)
iMr.WiFi..! Posted April 6, 2016 Posted April 6, 2016 @DTC12 انت منت معرف الname Experienced MTA developer for 4 years. | MTA خبرة 4 سنين في برمجة ليس عليك اسعاد الجميع , ولكن عليك بإن لا تؤذي أحداً =========You do not have to make everyone happy, But you should not hurt anyone Want to contact with me? Discord: JustCarry#2616 (Always there)Skype: Live:JustCarry10 (Not always)
iMr.WiFi..! Posted April 6, 2016 Posted April 6, 2016 @DTC12 انت منت معرف الname Experienced MTA developer for 4 years. | MTA خبرة 4 سنين في برمجة ليس عليك اسعاد الجميع , ولكن عليك بإن لا تؤذي أحداً =========You do not have to make everyone happy, But you should not hurt anyone Want to contact with me? Discord: JustCarry#2616 (Always there)Skype: Live:JustCarry10 (Not always)
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now