Jump to content

طلب كود


Recommended Posts

السلام عليكم و رحمة الله و بركاته

شباب بدى كود سلاب وصفه

الشرطى يختار من القريد ليست يضغط سلاب بيطلعله لوحة يكتب فيها السبب و يدوس على سلاب يسويله سلاب و يطلع بالشات ان اللاعب اتسواله سلاب من قبل الشرطى و جمبه السبب

ولو سمحتم بدى الكود كامل عشان انا ما افهم فى هذا الكود ابداً

Link to comment
  
-- client 
addEventHandler("onClientGUIClick", root, 
function () 
local sel = guiGridListGetSelectedItem ( grid ) 
local plr = guiGridListGetItemText ( grid,2 Sel, 1 ) 
if source == Btn and sel ~= -1 then 
triggerServerEvent("SlapPlayer", localplayer, plr) 
end 
end 
) 
  

  
addEvent("SlapPlayer",true) 
addEventHandler("SlapPlayer", root, 
function (plr) 
killPed(plr) 
outputChatBox(plr.."has Slapped By "..getPlayerName (source) , 255, 0, 0, false) 
end 
) 
  
  

مهي مجربة

انشاءالله تتحسن في هذا شيء

Link to comment
فى سؤال

انا مسوى لوحتين

لوحة فيها القريد ليست و كلمة سلاب

و لما اضغط سلاب يظهرلى اللوحة الثانية الفيها السبب و فيها زر تانى سلاب

ايهه ووش هو سؤالك ؟

Link to comment
شوف

انا اذا حطيت على اسم بالقريد ليست و رحت ضغط على زر سلاب الهو يفتح اللوحة

و سويت سبب و بعدين ضغط على زر سلاب اليصك

بيكون زين ؟

بتسألني بيكون زين ولا لا ؟

هذا انت تسأل نفسك فيه

انت شوف اللي يريحك وسويه

Link to comment

طيب انا سويته و ضبط

باقى شئ

انا مسوى اديت بوكس

بدى لما اكتب فيه السبب و اسوى سلاب يظهر بالشات ان اللاعب اتصك من قبل الشرطى و السبب بين قوسين

Link to comment
  
-- client 
addEventHandler("onClientGUIClick", root, 
function () 
local sel = guiGridListGetSelectedItem ( grid ) 
local plr = guiGridListGetItemText ( grid,2 Sel, 1 ) 
if source == Btn and sel ~= -1 then 
mezo = guiGetText ( editbox) 
triggerServerEvent("SlapPlayer", localplayer, plr, mezo) 
end 
end 
) 
  

  
addEvent("SlapPlayer",true) 
addEventHandler("SlapPlayer", root, 
function (mezo,plr) 
killPed(plr) 
outputChatBox(plr.."has Slapped By "..getPlayerName (source).."Reason ".. mezo.. , 255, 0, 0, false) 
end 
) 
  
  
  

Edited by Guest
Link to comment
  
addEventHandler("onClientGUIClick", root, 
function () 
local sel = guiGridListGetSelectedItem ( grid ) 
local plr = guiGridListGetItemText ( grid,2 Sel, 1 ) 
if source == Btn and sel ~= -1 then 
edit1 = guiGetText ( Edit ) -- اسم الايديت 
  
triggerServerEvent("SlapPlayer", localplayer, plr, edit1) 
end 
end 
) 
  

  
addEvent("SlapPlayer",true) 
addEventHandler("SlapPlayer", root, 
function (plr,edit1) 
killPed(plr) 
outputChatBox(plr.."has Slapped By "..getPlayerName (source).."Reason:"..edit1 , 255, 0, 0, false) 
end 
) 
  

Link to comment
ميزو كودك هنا في خطأ
  
outputChatBox(plr.."has Slapped By "..getPlayerName (source).."Reason ".. mezo.." , 255, 0, 0, false) 
  
  
 

التصحيح :

  
outputChatBox(plr.."has Slapped By "..getPlayerName (source).."Reason ".. mezo.. , 255, 0, 0, false) 
  

عدلته قبل م تقول

مشكور ع التنبيه ايضا

ولا تسوي مشاركتين ورا بعض

عليها مخالفة

Link to comment
  
-- client 
addEventHandler("onClientGUIClick", root, 
function () 
local sel = guiGridListGetSelectedItem ( grid ) 
local plr = guiGridListGetItemText ( grid,2 Sel, 1 ) 
if source == Btn and sel ~= -1 then 
local WiFi = guiGetText ( Edit ) -- اسم الايديت 
  
triggerServerEvent("SlapPlayer", localplayer, plr, WiFi) 
end 
end 
) 
  

  
-- server 
addEvent("SlapPlayer",true) 
addEventHandler("SlapPlayer", root, 
function (plr,WiFi) 
killPed(plr) 
outputChatBox(plr.."has Slapped By "..getPlayerName (source).."Reason:"..WiFi , 255, 0, 0, false) 
end 
) 
  

Link to comment

#Server Side

function chatBox(plr,WiFi) 
outputChatBox(plr.."has Slapped By "..getPlayerName (source).."Reason:"..WiFi , 255, 0, 0, false) 
end 
addEvent("ChatBox_playerHaveSlap", true) 
addEventHandler("ChatBox_playerHaveSlap", root, chatBox) 

#Client Side

addEventHandler("onClientGUIClick",root, 
function ( ) 
if ( source == SlapButton ) then 
if ( guiGridListGetSelectedItem(pList ) ~= -1 ) then 
local plr = guiGridListGetItemText(pList ,guiGridListGetSelectedItem(pList ),1) 
local myPlayer = getPlayerFromName ( plr ) 
local WiFi = guiGetText ( Edit ) -- اسم الايديت 
triggerServerEvent("ChatBox_playerHaveSlap", resourceRoot, plr) 
setElementHealth(myPlayer, 0, true) 
guiSetVisible(SlapWnd,false) 
guiSetInputEnabled(false) 
showCursor(false) 
end 
end 
end 
) 

Edit = guiCreateEdit(75, 34, 289, 25, "", false, SlapWnd) 

انا مسميه Edit

Link to comment
function chatBox(plr,mezo) 
outputChatBox(plr.."has Slapped By "..getPlayerName (source).."Reason:"..mezo, 255, 0, 0, false) 
end 
addEvent("ChatBox_playerHaveSlap", true) 
addEventHandler("ChatBox_playerHaveSlap", root, chatBox) 

#Client Side

addEventHandler("onClientGUIClick",root, 
function ( ) 
if ( source == SlapButton ) then 
if ( guiGridListGetSelectedItem(pList ) ~= -1 ) then 
local plr = guiGridListGetItemText(pList ,guiGridListGetSelectedItem(pList ),1) 
local myPlayer = getPlayerFromName ( plr ) 
local mezo = guiGetText ( Edit ) -- اسم الايديت 
triggerServerEvent("ChatBox_playerHaveSlap", resourceRoot, plr, mezo) 
setElementHealth(myPlayer, 0, true) 
guiSetVisible(SlapWnd,false) 
guiSetInputEnabled(false) 
showCursor(false) 
end 
end 
end 
) 

Link to comment
function chatBox(plr,mezo) 
outputChatBox(""..plr.." has Slapped By "..getPlayerName (source).."Reason:"..mezo, 255, 0, 0, false) 
end 
addEvent("ChatBox_playerHaveSlap", true) 
addEventHandler("ChatBox_playerHaveSlap", root, chatBox) 
  
  

#Client Side

addEventHandler("onClientGUIClick",root, 
function ( ) 
if ( source == SlapButton ) then 
if ( guiGridListGetSelectedItem(pList ) ~= -1 ) then 
local plr = guiGridListGetItemText(pList ,guiGridListGetSelectedItem(pList ),1) 
local myPlayer = getPlayerFromName ( plr ) 
local mezo = guiGetText ( Edit )  
triggerServerEvent("ChatBox_playerHaveSlap", localPlayer, plr, mezo) 
setElementHealth(myPlayer, 0, true) 
guiSetVisible(SlapWnd,false) 
guiSetInputEnabled(false) 
showCursor(false) 
end 
end 
end 
) 

Edited by Guest
Link to comment

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...