Jump to content

طلب كود * تمت الأفادة


Recommended Posts

شباب أبي كود أحدد به عدد الرصاص تبع السلاح

مثلا أنا أبي السنايبر 3 طلقات بعدين يعشق

وشكرا

ـــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــ

الي فوق تم

الحين المشكلة هي أن هذا الكود مو شغال

function weaponProperty ( ) 
   setWeaponProperty(30, "poor", "maximum_clip_ammo", 3) 
  
end 
addEventHandler("onResourceStart", getRootElement(), weaponProperty) 

أرجو التصحيح

Edited by Guest
Link to comment
function onResourceStart() 
   setWeaponProperty(30, "poor", "maximum_clip_ammo", 3) 
  
end 
addEventHandler("onResourceStart", resourceRoot, onResourceStart) 
  
  
  
  

ويش الغلط

هو كان شغال بس وقف مادري ليش

30 = ??

Wiki =

weaponID: The ID or name of the weapon you want to set a property of. Names can be:

grenade

teargas

molotov

colt 45

silenced

deagle

shotgun

sawed-off

combat shotgun

uzi

mp5

ak-47

m4

tec-9

rifle

sniper

rocket launcher

rocket launcher hs

flamethrower

minigun

satchel

bomb

spraycan

fire extinguisher

camera

Link to comment
function onResourceStart() 
   setWeaponProperty(30, "poor", "maximum_clip_ammo", 3) 
  
end 
addEventHandler("onResourceStart", resourceRoot, onResourceStart) 
  
  
  
  

ويش الغلط

هو كان شغال بس وقف مادري ليش

30 = ??

Wiki =

weaponID: The ID or name of the weapon you want to set a property of. Names can be:

grenade

teargas

molotov

colt 45

silenced

deagle

shotgun

sawed-off

combat shotgun

uzi

mp5

ak-47

m4

tec-9

rifle

sniper

rocket launcher

rocket launcher hs

flamethrower

minigun

satchel

bomb

spraycan

fire extinguisher

camera

bool setWeaponProperty ( int weaponID/string weaponName, string weaponSkill, string property, int/float theValue ) 
  

Example

setWeaponProperty(23, "pro", "flags", 0x000800) 
setWeaponProperty(23, "pro", "flags", 0x000002) 
setWeaponProperty(23, "pro", "maximum_clip_ammo", 34) 

و أزيدك جربته كذا

setWeaponProperty("minigun", "pro", "maximum_clip_ammo", 1000) 

ولا زبط

مادري ليش أول مره زبط بعدين سويت ريسترات حق السيرفر و وقف

Link to comment
function onResourceStart() 
   setWeaponProperty(30, "poor", "maximum_clip_ammo", 3) 
  
end 
addEventHandler("onResourceStart", resourceRoot, onResourceStart) 
  
  
  
  

ويش الغلط

هو كان شغال بس وقف مادري ليش

30 = ??

Wiki =

weaponID: The ID or name of the weapon you want to set a property of. Names can be:

grenade

teargas

molotov

colt 45

silenced

deagle

shotgun

sawed-off

combat shotgun

uzi

mp5

ak-47

m4

tec-9

rifle

sniper

rocket launcher

rocket launcher hs

flamethrower

minigun

satchel

bomb

spraycan

fire extinguisher

camera

Link to comment
function weaponProperty () 
   setWeaponProperty(30, "poor", "maximum_clip_ammo", 3) 
  
end 
addEventHandler("onResourceStart", root, weaponProperty) 

ما زبط

البيد يزبط عليه يطلق بس 3

أم اللاعب ما يزبط عليه مادري ليش

Link to comment
أتوقع المشكلة مو من الكود

لأن أول ما ركبته أشتغل تمام

بس لم سويت ريسترات حق السيرفر خرب

ذي اانا جربتها و شغال بس اول ما تشغله يشتغل و اذا سويت للمود ريستارت

يروح سوي ريستارت ثاني و ترجع

Link to comment
الخطأ انك حاط الأيدي بدل الأسم

جرب كذا

  
   function weaponProperty () 
       setWeaponProperty(sniper, "pro", "maximum_clip_ammo", 3) 
      
    end 
    addEventHandler("onResourceStart", root, weaponProperty) 
  

على كفيك جيت و قلت الخطأ من الايدي؟

اقرا الويكي اول بعدين تعال تفلسف

weaponID: The ID or name of the weapon you want to set a property of.

Link to comment

جرب كذآ ..

addEventHandler("onResourceStart", resourceRoot, 
    function( thisRes ) 
        setWeaponProperty ( 30, "flags", 0x001000 ) 
        setWeaponProperty ( 30, "pro", "maximum_clip_ammo", 3 ) 
    end 
) 

weaponSkill: Either: "pro", "std" or "poor". The player must have this skill level set to have the effect.

Link to comment
جرب كذآ ..
addEventHandler("onResourceStart", resourceRoot, 
    function( thisRes ) 
        setWeaponProperty ( 30, "flags", 0x001000 ) 
        setWeaponProperty ( 30, "pro", "maximum_clip_ammo", 3 ) 
    end 
) 

weaponSkill: Either: "pro", "std" or "poor". The player must have this skill level set to have the effect.

كفووؤو عبادي

شكرا

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