Jump to content

كودات#


Recommended Posts

ابي كود

اليضعط

علي

button

اسمه Destroy Car

تتسحب السياره

---

وكود تاني

فتح اللوحه بحرف m وكدا

--

وكود تالت

اليضعط m

ويدوس علي نفسه

يطلع له لوحه

وشكرا #

Link to comment
ابي كود

اليضعط

علي

button

اسمه Destroy Car

تتسحب السياره

---

وكود تاني

فتح اللوحه بحرف m وكدا

--

وكود تالت

اليضعط m

ويدوس علي نفسه

يطلع له لوحه

وشكرا #

onClientGUIClick 
destroyElement 
bindKey 
guiSetVisible 

Link to comment

طيب طلعلي كودين

كود اليمثلن انا عامل button

اسمه Destroy Car

يتسحب السياره

--

و اليفتح ب حرف " m "

--

وابي تعليم كيف اطلع الكودات العططهالي

Link to comment
  
addEventHandler("onClientGUIClick",root,function() 
if source == button then 
destroyElement ( اسم المتغير حق السيارة  ) 
end 
end) 
--- الطلب الثاني 
bindKey("m","down",function() 
if guiGetVisible (window name) == true then 
guiSetVisible(window name,false) 
else  
guiSetVisible(window name,true) 
end 
end 
  

بعتذر لو في اخطاء كتبته ع السريع :)

Link to comment
  
GUIEditor = { 
    button = {}, 
    window = {} 
} 
addEventHandler("onClientResourceStart", resourceRoot, 
    function() 
        GUIEditor.window[1] = guiCreateWindow(225, 146, 352, 352, "Test", false) 
        guiWindowSetSizable(GUIEditor.window[1], false) 
  
        GUIEditor.button[1] = guiCreateButton(46, 157, 185, 44, "Destroy car", false, GUIEditor.window[1]) 
        guiSetProperty(GUIEditor.button[1], "NormalTextColour", "FFAAAAAA")     
    end 
) 
  

Link to comment
  
addEventHandler("onClientGUIClick",root,function() 
if source == button then 
destroyElement ( اسم المتغير حق السيارة  ) 
end 
end) 
--- الطلب الثاني 
bindKey("m","down",function() 
if guiGetVisible (window name) == true then 
guiSetVisible(window name,false) 
else  
guiSetVisible(window name,true) 
end 
end 
  

بعتذر لو في اخطاء كتبته ع السريع

أكوادكـ ماهيب صحيحة !!

createVehicle هو يقصد يسحب سيارة اللاعب مهيب سيارة مسويها بالوظيفة

والمفروض بوظيفة فتح اللوحة تحط له الماوس

ع العموم أكوادكـ تصير كذا

-- Client Side ;

addEventHandler("onClientGUIClick",root,function(    ) 
   if source == button then 
    if not isPedInVehicle(localPlayer) then return end 
    destroyElement ( getPedOccupiedVehicle(localPlayer) ) 
        end 
   end 
 ) 
  
bindKey("m","down",function(     ) 
   if guiGetVisible (window) == true then 
    guiSetVisible(window,false) 
    showCursor(false) 
   else 
   guiSetVisible(window,true) 
   showCursor(true) 
      end 
  end 
) 
Edited by Guest
Link to comment
  
addEventHandler("onClientGUIClick",root,function() 
if source == button then 
local vehicles = getPedOccupiedVehicle (localPlayer)    
if (vehicles) then  
destroyElement ( vehicles ) 
end 
end 
end) 
--- الطلب الثاني 
bindKey("m","down",function() 
if guiGetVisible (window name) == true then 
guiSetVisible(window name,false) 
showCursor(false) 
else  
guiSetVisible(window name,true) 
showCursor(true) 
end 
end) 
  

Edited by Guest
Link to comment

ايه المشكله

GUIEditor = { 
    button = {}, 
    window = {} 
} 
addEventHandler("onClientResourceStart", resourceRoot, 
    function() 
        GUIEditor.window[1] = guiCreateWindow(225, 146, 352, 352, "Test", false) 
        guiWindowSetSizable(GUIEditor.window[1], false) 
        guiSetVisible(GUIEditor.window[1] ,false) -- عدم اظهار الوحة وقت تشغيل المود 
        GUIEditor.button[1] = guiCreateButton(46, 157, 185, 44, "Destroy car", false, GUIEditor.window[1]) 
        guiSetProperty(GUIEditor.button[1], "NormalTextColour", "FFAAAAAA")     
    end 
) 
  
addEventHandler("onClientGUIClick",root,function() 
if source == GUIEditor.button[1] then 
local vehicles = getPedOccupiedVehicle (localPlayer)   
if (vehicles) then 
destroyElement ( vehicles ) 
end 
end 
end) 
--- الطلب الثاني 
bindKey("m","down",function() 
if guiGetVisible (GUIEditor.window[1]) == true then 
guiSetVisible(GUIEditor.window[1],false) 
showCursor(false) 
else 
guiSetVisible(GUIEditor.window[1],true) 
showCursor(true) 
end 
end 

Link to comment
ايه المشكله
GUIEditor = { 
    button = {}, 
    window = {} 
} 
addEventHandler("onClientResourceStart", resourceRoot, 
    function() 
        GUIEditor.window[1] = guiCreateWindow(225, 146, 352, 352, "Test", false) 
        guiWindowSetSizable(GUIEditor.window[1], false) 
        guiSetVisible(GUIEditor.window[1] ,false) -- عدم اظهار الوحة وقت تشغيل المود 
        GUIEditor.button[1] = guiCreateButton(46, 157, 185, 44, "Destroy car", false, GUIEditor.window[1]) 
        guiSetProperty(GUIEditor.button[1], "NormalTextColour", "FFAAAAAA")     
    end 
) 
  
addEventHandler("onClientGUIClick",root,function() 
if source == GUIEditor.button[1] then 
local vehicles = getPedOccupiedVehicle (localPlayer)   
if (vehicles) then 
destroyElement ( vehicles ) 
end 
end 
end) 
--- الطلب الثاني 
bindKey("m","down",function() 
if guiGetVisible (GUIEditor.window[1]) == true then 
guiSetVisible(GUIEditor.window[1],false) 
showCursor(false) 
else 
guiSetVisible(GUIEditor.window[1],true) 
showCursor(true) 
end 
end 

GUIEditor = { 
    button = {}, 
    window = {} 
} 
addEventHandler("onClientResourceStart", resourceRoot, 
    function() 
        GUIEditor.window[1] = guiCreateWindow(225, 146, 352, 352, "Test", false) 
        guiWindowSetSizable(GUIEditor.window[1], false) 
        guiSetVisible(GUIEditor.window[1] ,false) -- عدم اظهار الوحة وقت تشغيل المود 
        GUIEditor.button[1] = guiCreateButton(46, 157, 185, 44, "Destroy car", false, GUIEditor.window[1]) 
        guiSetProperty(GUIEditor.button[1], "NormalTextColour", "FFAAAAAA")     
    end 
) 
  
addEventHandler("onClientGUIClick",root,function() 
if source == GUIEditor.button[1] then 
local vehicles = getPedOccupiedVehicle (localPlayer)   
if (vehicles) then 
destroyElement ( vehicles ) 
end 
end 
end) 
--- الطلب الثاني 
bindKey("m","down",function() 
if guiGetVisible (GUIEditor.window[1]) == true then 
guiSetVisible(GUIEditor.window[1],false) 
showCursor(false) 
else 
guiSetVisible(GUIEditor.window[1],true) 
showCursor(true) 
end 
end) 

Link to comment

GUIEditor = { 
    button = {}, 
    window = {} 
} 
  
        GUIEditor.window[1] = guiCreateWindow(225, 146, 352, 352, "Test", false) 
        guiWindowSetSizable(GUIEditor.window[1], false) 
        guiSetVisible(GUIEditor.window[1] ,false) -- عدم اظهار الوحة وقت تشغيل المود 
        GUIEditor.button[1] = guiCreateButton(46, 157, 185, 44, "Destroy car", false, GUIEditor.window[1]) 
        guiSetProperty(GUIEditor.button[1], "NormalTextColour", "FFAAAAAA")     
  
  
addEventHandler("onClientGUIClick",root,function() 
  
    if source == GUIEditor.button[1] then 
     
    if isPedInVehicle ( localPlayer ) then 
  
    destroyElement (  getPedOccupiedVehicle(localPlayer) ) 
        end 
    end 
end     ) 
  
--- الطلب الثاني 
  
bindKey("m","down", 
  
    function (  ) 
  
    guiSetVisible ( GUIEditor.window[1] , not guiGetVisible ( GUIEditor.window[1] ) ) 
  
    showCursor ( not isCursorShowing (  ) ) 
  
end     ); 
Link to comment
GUIEditor = { 
    button = {}, 
    window = {} 
} 
  
        GUIEditor.window[1] = guiCreateWindow(225, 146, 352, 352, "Test", false) 
        guiWindowSetSizable(GUIEditor.window[1], false) 
        guiSetVisible(GUIEditor.window[1] ,false) -- عدم اظهار الوحة وقت تشغيل المود 
        GUIEditor.button[1] = guiCreateButton(46, 157, 185, 44, "Destroy car", false, GUIEditor.window[1]) 
        guiSetProperty(GUIEditor.button[1], "NormalTextColour", "FFAAAAAA")     
  
  
addEventHandler("onClientGUIClick",root,function() 
  
    if source == GUIEditor.button[1] then 
     
    if isPedInVehicle ( localPlayer ) then 
  
    destroyElement (  getPedOccupiedVehicle(localPlayer) ) 
        end 
    end 
end     ) 
  
--- الطلب الثاني 
  
bindKey("m","down", 
  
    function (  ) 
  
    guiSetVisible ( GUIEditor.window[1] , not guiGetVisible ( GUIEditor.window[1] ) ) 
  
    showCursor ( not isCursorShowing (  ) ) 
  
end     ); 

طيب وش الفرق ._.

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...