Jump to content

طلب بعد مهمات


تم حذف

Recommended Posts

  • 3 weeks later...

شف انا ماراح اكثر معك كلام وكذا

بس اقلك ان ماحد بيسوي لك طلباتك الا ب مقابل وتلاقي نادرا الي يسويه ب مقابل

واذا تبي تبرمج مهمة ب نفسك شوف ذا الموضوع نفس طلبك

viewtopic.php?f=160&t=66240

وبالنسبة ل الخطف

عطنا فكرة المود كامل عشان نعطيك الاشياء الي تستخدمها

لاتقول مثل جراند والعرب وكذا

ماعرف كيف بس قلي فكرته وان شاء الله اعطيك

واتوقع حتى لو عطيتك يمكن ماراح تقدر تسويه

لو عندك خبرة كافية كان سويته بدون ماطلبت

Link to comment
"onPlayerTarget" -- اذا صوبت 
getElementHealth -- تجيب دم الاعب وتتحقق 
setPedAnimation -- يستسلم 
attachElements -- يلحقك 
createMarker -- تسوي ماركر 
setElementVisibleTo -- تخلي الي يشوف الماركر الخاطف والمخطوف 
"onMarkerHit" -- لما توقف على الماركر 
getElementAttachedTo -- تجيب المخطوف عن طريق الخاطف الي وقف على الماركر 
detachElements -- تفصله 
setElementPosition -- تحطه في مكان المخطوفين 
setAccountData -- تحط انه صاحب هذا الحساب مخطوف 
onPlayerJoin -- لما يدخل الاعب 
getAccountData -- يتحقق اذا كان مخطوف او لا 
spawnPlayer -- تحطه في مكان المخطوفين 
-- اذا تببي دفع المبلغ زر 
onClientGUIClick 
triggerServerEvent 
-- اذا تبيه زر من لوحة المفاتيح 
bindKey 
-- اذا تبيه كلمة في اف8 
addCommandHandler 
getPlayerMoney -- تجيب فلوس الاعب تتحقق اذا يقدر يدفع ولآ 
takePlayerMoney -- تسحب الفلوس 
setAccountData -- تشيل الخطف من حسابه 
setElementPosition -- تنقله خارج مكان الخطف 
givePlayerMoney -- لتعطي الخاطف فلوس -- طبعاً تحدد الخاطف بداتا او الي تبي 

حاول وحنا بنساعدك

Link to comment
"onPlayerTarget" -- اذا صوبت 
getElementHealth -- تجيب دم الاعب وتتحقق 
setPedAnimation -- يستسلم 
attachElements -- يلحقك 
createMarker -- تسوي ماركر 
setElementVisibleTo -- تخلي الي يشوف الماركر الخاطف والمخطوف 
"onMarkerHit" -- لما توقف على الماركر 
getElementAttachedTo -- تجيب المخطوف عن طريق الخاطف الي وقف على الماركر 
detachElements -- تفصله 
setElementPosition -- تحطه في مكان المخطوفين 
setAccountData -- تحط انه صاحب هذا الحساب مخطوف 
onPlayerJoin -- لما يدخل الاعب 
getAccountData -- يتحقق اذا كان مخطوف او لا 
spawnPlayer -- تحطه في مكان المخطوفين 
-- اذا تببي دفع المبلغ زر 
onClientGUIClick 
triggerServerEvent 
-- اذا تبيه زر من لوحة المفاتيح 
bindKey 
-- اذا تبيه كلمة في اف8 
addCommandHandler 
getPlayerMoney -- تجيب فلوس الاعب تتحقق اذا يقدر يدفع ولآ 
takePlayerMoney -- تسحب الفلوس 
setAccountData -- تشيل الخطف من حسابه 
setElementPosition -- تنقله خارج مكان الخطف 
givePlayerMoney -- لتعطي الخاطف فلوس -- طبعاً تحدد الخاطف بداتا او الي تبي 

حاول وحنا بنساعدك

Link to comment

ذي حاولت فيها

صراحه كلها نسخ ولصق بس صح ولا لين م شوف فيها شي يستاهل التعديل المهم ذي اول 3 فنكشات شوفها صح ولا

برقد لا صحيت كملتها

function showLocalHealth() 
    -- get the player's health and output it 
    local playerHealth = getElementHealth ( getLocalPlayer() ) 
    outputChatBox ( "Your health: " .. playerHealth ) 
  
    -- get the player's vehicle: if he is in one, output its health as well 
    local playerVehicle = getPedOccupiedVehicle ( getLocalPlayer() ) 
    if playerVehicle then 
        local vehicleHealth = getElementHealth ( playerVehicle ) 
        outputChatBox ( "Your vehicle's health: " .. vehicleHealth ) 
    end 
end 
addCommandHandler ( "showhealth", showLocalHealth ) 

function makePed() 
   ped1 = createPed(56, 1, 1, 4) 
   setPedRotation(ped1, 315) 
   setPedAnimation( ped1, "ped", "WOMAN_walknorm") 
end 
addCommandHandler("makemyped", makePed) 

addEventHandler("onClientPreRender",root, 
  function () 
    daBlock, daAnim = getPedAnimation(getLocalPlayer()) 
    setElementData(root,"blockz",daBlock) 
    setElementData(root,"animz",daAnim) 
  end ) 
  

function dance (source) 
    daBlockz = getElementData(root,"blockz") 
    daAnimz = getElementData(root,"animz") 
        if daBlockz == "dancing" and daAnimz == "dnce_m_b" then 
            setPedAnimation(source,false) 
        else 
            setPedAnimation ( source, "DANCING", "dnce_m_b") 
        end 
    end 
addCommandHandler("dance",dance) 

بالنتضار

مستحيل يكون فيه طالب بدون مدرسس

اذا عاد اذا كان غايب المدرس ذا كلام ثاني ذذ

المهم برب نوم سهران يومين لا صحيت كملت الباقي بس شوف ذي وش وضعها

Link to comment
ذي حاولت فيها

صراحه كلها نسخ ولصق بس صح ولا لين م شوف فيها شي يستاهل التعديل المهم ذي اول 3 فنكشات شوفها صح ولا

برقد لا صحيت كملتها

function showLocalHealth() 
    -- get the player's health and output it 
    local playerHealth = getElementHealth ( getLocalPlayer() ) 
    outputChatBox ( "Your health: " .. playerHealth ) 
  
    -- get the player's vehicle: if he is in one, output its health as well 
    local playerVehicle = getPedOccupiedVehicle ( getLocalPlayer() ) 
    if playerVehicle then 
        local vehicleHealth = getElementHealth ( playerVehicle ) 
        outputChatBox ( "Your vehicle's health: " .. vehicleHealth ) 
    end 
end 
addCommandHandler ( "showhealth", showLocalHealth ) 

function makePed() 
   ped1 = createPed(56, 1, 1, 4) 
   setPedRotation(ped1, 315) 
   setPedAnimation( ped1, "ped", "WOMAN_walknorm") 
end 
addCommandHandler("makemyped", makePed) 

addEventHandler("onClientPreRender",root, 
  function () 
    daBlock, daAnim = getPedAnimation(getLocalPlayer()) 
    setElementData(root,"blockz",daBlock) 
    setElementData(root,"animz",daAnim) 
  end ) 
  

function dance (source) 
    daBlockz = getElementData(root,"blockz") 
    daAnimz = getElementData(root,"animz") 
        if daBlockz == "dancing" and daAnimz == "dnce_m_b" then 
            setPedAnimation(source,false) 
        else 
            setPedAnimation ( source, "DANCING", "dnce_m_b") 
        end 
    end 
addCommandHandler("dance",dance) 

بالنتضار

مستحيل يكون فيه طالب بدون مدرسس

اذا عاد اذا كان غايب المدرس ذا كلام ثاني ذذ

المهم برب نوم سهران يومين لا صحيت كملت الباقي بس شوف ذي وش وضعها

تبي انت خطف

وطيب ليه كل ذا ونسخ ولصق

وحاط يجي بالشات !!

مستحيل نسويه لك كذا

ابي ادري بعد من وين جبت المنت داتا ؟؟

Link to comment
ذي حاولت فيها

صراحه كلها نسخ ولصق بس صح ولا لين م شوف فيها شي يستاهل التعديل المهم ذي اول 3 فنكشات شوفها صح ولا

برقد لا صحيت كملتها

function showLocalHealth() 
    -- get the player's health and output it 
    local playerHealth = getElementHealth ( getLocalPlayer() ) 
    outputChatBox ( "Your health: " .. playerHealth ) 
  
    -- get the player's vehicle: if he is in one, output its health as well 
    local playerVehicle = getPedOccupiedVehicle ( getLocalPlayer() ) 
    if playerVehicle then 
        local vehicleHealth = getElementHealth ( playerVehicle ) 
        outputChatBox ( "Your vehicle's health: " .. vehicleHealth ) 
    end 
end 
addCommandHandler ( "showhealth", showLocalHealth ) 

function makePed() 
   ped1 = createPed(56, 1, 1, 4) 
   setPedRotation(ped1, 315) 
   setPedAnimation( ped1, "ped", "WOMAN_walknorm") 
end 
addCommandHandler("makemyped", makePed) 

addEventHandler("onClientPreRender",root, 
  function () 
    daBlock, daAnim = getPedAnimation(getLocalPlayer()) 
    setElementData(root,"blockz",daBlock) 
    setElementData(root,"animz",daAnim) 
  end ) 
  

function dance (source) 
    daBlockz = getElementData(root,"blockz") 
    daAnimz = getElementData(root,"animz") 
        if daBlockz == "dancing" and daAnimz == "dnce_m_b" then 
            setPedAnimation(source,false) 
        else 
            setPedAnimation ( source, "DANCING", "dnce_m_b") 
        end 
    end 
addCommandHandler("dance",dance) 

بالنتضار

مستحيل يكون فيه طالب بدون مدرسس

اذا عاد اذا كان غايب المدرس ذا كلام ثاني ذذ

المهم برب نوم سهران يومين لا صحيت كملت الباقي بس شوف ذي وش وضعها

تبي انت خطف

وطيب ليه كل ذا ونسخ ولصق

وحاط يجي بالشات !!

مستحيل نسويه لك كذا

ابي ادري بعد من وين جبت المنت داتا ؟؟

ي رجال اسحب عليه لا فهمنا ل البرمجه اكثر فكرت بـ هـ الاشياء الحين حاولت بس لين كنق عبادي نزل الفنكشات ولا م كان عندي نيه

تعال هون

/viewtopic.php?f=160&t=66350

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