Jump to content

طلب فنكشات


EH10

Recommended Posts

بسم الله الرحمن الرحيم

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

ابي طلبين فنكشات

يجي بالشاشة منور السيرفر وتختفي بعد كم ثانية واذا كتبت ثاني مره يجي كاتب السيرفر ويختفي بعد كم ثانية واذا كتبت ثالث مره بيجي كاتب السيرفر Kaw اذا كتبت

بيجي غير السيرفر واذا كررت ثاني مره بيجي لايمكنك التغيير بالسيرفر واذا كتبت ثالث مره ويجي بالشاشة بد لايمكنك التغيير في السيرفر Saw واذا كتبت

بيجي من الاول Kaw وبعدها Saw ولما كتبت

الطلب الثاني

اذا ضغطت الزر بيجي بالشات انت الان اخذت سياره ويعطيك سياره واذا ضغطت ثاني مره يجي بالشات انت لديك سياره لايمكن اخذ شي ثاني

Link to comment

الطلب الثاني .. :

Event: "onClientGUIClick"

outputChatBox 
createVehicle 
warpPedIntoVehicle 
isElement 
cancelEvent 

ممكن تعديل

addEventHandler( "onClientGUIClick", Button, 
 function () 
        if isElement ( vehicle ) then 
        outputChatBox( "مبروك انت معك سياره", source, 255, 255, 0, true ) 
      vehicle = createVehicle ( id, x, y, z ) 
          else 
        cancelEvent (   ) 
        outputChatBox( "انت معك سياره", source, 255, 0, 255, true ) 
    end 
 end 
 ) 

Link to comment

الطلب الثاني .. :

Event: "onClientGUIClick"

outputChatBox 
createVehicle 
warpPedIntoVehicle 
isElement 
cancelEvent 

ممكن تعديل

addEventHandler( "onClientGUIClick", Button, 
 function () 
        if isElement ( vehicle ) then 
        outputChatBox( "مبروك انت معك سياره", source, 255, 255, 0, true ) 
      vehicle = createVehicle ( id, x, y, z ) 
          else 
        cancelEvent (   ) 
        outputChatBox( "انت معك سياره", source, 255, 0, 255, true ) 
    end 
 end 
 ) 

خطا

تسوي كذا

if source == اسم الزر

Link to comment

الـكـود صـح أو خـطأ

# Client Side

addEventHandler("onClientGUIClick", root,function() 
    if source == Button then 
      triggerServerEvent("vcars", getLocalPlayer()) 
    end 
  end 
) 

# Server Side

local vehicle = {} 
  
addEvent("vcars", true ) 
addEventHandler("vcars", root, 
function(player) 
        if ( isElement ( vehicle[source] ) ) then destroyElement ( vehicle[source] ) end 
          vehicle[source] = createVehicle(id, x, y, z) 
          warpPedIntoVehicle( source, vehicle[source] ) 
          outputChatBox("مبروك اخذت سياره", source, 255, 255, 0, true ) 
          setElementData(player, "Sourth", true) 
              else 
          if getElementData(player, "Sourth") then 
          outputChatBox("لديك سياره", source, 255, 255, 0, true ) 
        end 
    end 
) 
Link to comment
local vehicle = {} 
  
addEvent("vcars", true ) 
addEventHandler("vcars", root, 
function() 
    if not isElement(vehicle[source]) then 
        local x, y, z = getElementPosition(source) 
        vehicle[source] = createVehicle(id, x, y, z) -- id استبدل فقط 
        warpPedIntoVehicle(source, vehicle[source]) 
        outputChatBox("مبروك اخذت سياره", source, 255, 255, 0, true) 
    else 
        outputChatBox("لديك سياره", source, 255, 255, 0, true) 
    end 
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...