Jump to content

طلب كود شوب


Recommended Posts

السلام عليكم

بغيت كم كود للشوب

1- سوبر مان

(يعني دم الاعب ما ينقسص لمدة معينه )

2- كود تغير طلقات المسدس اذا ضغط على زر معين

3- سوبر m4

4- الانتقال للاعب

و مشكورين مقدماً

Link to comment

https://forum.multitheftauto.com/search.php

ليه مكرر المشاركات ؟ كلهم خطأ

خذ جرب اذا قصدك سوبر مان يعني ماينقص دمه لوقت معين جرب كذا

-- Client

function SuperMan() 
    triggerServerEvent("SuperMan",localPlayer) 
end 
  
local timer = 4000 -- الوقت عدل عليه كل ثانيه 1000 الوقت الي راح يطفي فيه السوبر مان 
  
addEventHandler("onClientGUIClick",guiRoot,function() 
    if source == ButtonName then 
        addEventHandler("onClientRender",getRootElement(),SuperMan) 
        setTimer(function() removeEventHandler("onClientRender",getRootElement(),SuperMan) end,timer,1) 
    end 
end) 

-- Server

addEvent("SuperMan",true) 
addEventHandler("SuperMan",getRootElement(),function() 
    setElementHealth(source,100) 
end) 

تغيير السلاح :

setWeaponProperty 

سوبر ام 4 :

Event: onPlayerDamage 
killPed 

/quote]

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