Jump to content

مالمشكله ؟؟؟


Recommended Posts

local Hazard = { } 
  
addEvent("StartJobArmour",true) 
addEventHandler("StartJobArmour",root, 
function (skin) 
setPlayerNametagColor (source, 255, 240, 0) 
local x,y,z = getElementPosition(source) 
local Hazard[source] = createMarker(x,y,z-5,"cylinder",2, 255, 255, 255, 255) 
attachElements(Hazard[source],source,0,0+1.5,-2 ) 
setElementData(Hazard[source],'Blips',true) 
 end 
) 

مايحط الداتا للمركر ؟

Link to comment
addEventHandler("onClientGUIClick",root, 
function () 
        if source == StartWork then 
        local skin = guiGridListGetItemText( SkingJob,guiGridListGetSelectedItem(SkingJob),2) 
        if skin ~= "" then 
triggerServerEvent("StartJobArmour",localPlayer,skin) 
guiSetVisible(WindowArmour,false) 
setElementData(localPlayer, "Jobs",35) 
setElementModel(localPlayer,209) 
showCursor(false) 
    end 
  elseif source == ExitWindow then 
  guiSetVisible(WindowArmour,false)   
  showCursor(false) 
          end 
     end) 
      

دا الكلينت

+ حطيت

local Hazard = { } 
  
addEvent("StartJobArmour",true) 
addEventHandler("StartJobArmour",root, 
function (skin) 
setPlayerNametagColor (source, 255, 240, 0) 
local x,y,z = getElementPosition(source) 
Hazard[source] = createMarker(x,y,z-5,"cylinder",2, 255, 255, 255, 255) 
attachElements(Hazard[source],source,0,0+1.5,-2 ) 
setElementData(Hazard[source],'Blips',true) 
outputChatBox(getPlayerName(source)) 
 end 
) 

وطلع اسمي بالشات ض

Link to comment
هل ال attachElements

شغالة؟

وﻻ بس الالمنت داتا مو شغالة ..؟

جرب استبدل source

ب client

ورد لي خبر

غير كذا ما اشوف اغلاط

مافيه فرق بين

source و client

على كلام زاحف

+ لو كان فيه خطأ بالي تقول عنه

كان ماعطاه داتا وماطلع اسم بالشات

Link to comment
لا يلزق المركر بنجأح ضض

بس مايعطيه الداتا

كيف تتاكد انه ماعطاه الداتا؟ قصدي وش الكود الي مستعمله للتأكد من الداتا لو انحطت وﻻ ﻻ، يمكن يكون الغلط منه

مافيه فرق بين

source و client

على كلام زاحف

client: the client that triggered the event using triggerServerEvent. Not set if the event was not triggered from a client.

source: the element that triggered the event

Link to comment

مسوي لو ضغط زر يسوي لوب على المركرات

ويتاكد من انه المركر معه داتا

ويسوي له دستوري

ويمسحه

و سويت مركر

وماحطيت [source]

و حطيت الداتا بدوون

[source]

وجربت اضغط ومسح المركر بنجأح

انا مسوي جدول مشان لا يصير خربطه بين الاعبين

و جربت

[hitElement],[source],[thePlayer],[player]

بعد لما عرفتهم

بهاذا الشكل

function ( .. )

Link to comment
            addEventHandler ( "onClientGUIClick", guiRoot,  
            function (   ) 
         if ( source == Quit ) then 
 for i,v in ipairs( getElementsByType( 'marker' )) do 
 if getElementData(v,'Blips') then 
 destroyElement( v ) 
            end 
        end 
end 
) 

Link to comment
كنت ناسي اند وضفته و مايسوي شي بعد

استبدل

if getElementData(v,'Blips') then 

الى

if getElementData(v,'Blips') == true then 

ثم ضيف outputChatBox

بعد ال destroyElement

وقلي اذا يظهر وﻻ ﻻ

Link to comment
  
  
  
addEventHandler ( "onClientGUIClick", Quit , 
              function (   ) 
for i,v in ipairs( getElementsByType( 'marker' )) do 
 if getElementData(v,'Blips') == true then 
 destroyElement( v ) 
 outputChatBox(getPlayerName(localPlayer)) 
  
             end 
        end 
   end 
) 

طلع الكلام وللمعلوميه الكود تمام المشكله مو هنا المشكله في انه مايعطي الداتا وانا متاكد 100%100 انه مايعطي

وقبل اطرح الموضوع جربت مليون طريقه ومازبطت

Link to comment
local Hazard = { } 
  
addEvent("StartJobArmour",true) 
addEventHandler("StartJobArmour",root, 
function (skin) 
    setPlayerNametagColor (source, 255, 240, 0) 
    local x,y,z = getElementPosition(source) 
    Hazard[source] = createMarker(x,y,z-5,"cylinder",2, 255, 255, 255, 255) 
    attachElements(Hazard[source], source, 0, 0 + 1.5, - 2 ) 
    setElementData(Hazard[source], 'Blips', true) 
    outputChatBox(tostring(getElementData(Hazard[source], "Blips")), root) 
 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...