Jump to content

طلب فتكشنات اخفاء نفسي


momar5600

Recommended Posts

14 hours ago, momar5600 said:

اه شفته خلاص

بس وين شات مالقيته وين اخفاء نفسي اخفاء لاعب 

طيب ابي فتكشنات طيران سيارة

قيادة سيارة علي بحر

قفزة عاليه 

قفزة بالدراجة

يا اخوي ..

مثل ما اعطاك فوق

و قياده السياره على البحر 

setWorldSpecialPropertyEnabled ( "hovercars", true )

و طيران السياره

setWorldSpecialPropertyEnabled ( "aircars", true )  

و حقت القفزه العاليه لازم تخلي الجاذبيه قليله تستخدم

setGravity

 

Link to comment

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

function showVehicleName ( thePlayer )
   local theVehicle = getPedOccupiedVehicle ( thePlayer )
   if theVehicle then
      setElementAlpha(theVehicle, 0)
      else
      setElementAlpha(theVehicle, 255)
   end
end
addCommandHandler ( "getcarname", showVehicleName )

 

Edited by momar5600
Link to comment
12 hours ago, momar5600 said:

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

 


function showVehicleName ( thePlayer )
   local theVehicle = getPedOccupiedVehicle ( thePlayer )
   if theVehicle then
      setElementAlpha(theVehicle, 0)
      else
      setElementAlpha(theVehicle, 255)
   end
end
addCommandHandler ( "getcarname", showVehicleName )

اخي فهمني انت تبيه لما ينزل من السياره يرجعه مو مخفي ؟

Link to comment

اخي ..

عطيتك الكود بموضوع اخر ..

function VehicleAlpha ( thePlayer )
   local theVehicle = getPedOccupiedVehicle ( thePlayer )
   if getElementAlpha(theVehicle) == 255 then
	  setElementAlpha(theVehicle, 0)
   else
	  setElementAlpha(theVehicle, 255)
   end
end
addCommandHandler ( "getcarname", VehicleAlpha )

Link to comment

مانجحت

function VehicleAlpha ( thePlayer )
   local theVehicle = getPedOccupiedVehicle ( thePlayer )
   if getElementAlpha(theVehicle) == 255 then
      setElementAlpha(theVehicle, 0)
   else
      setElementAlpha(theVehicle, 255)
   end
end
addCommandHandler ( "getcarname", VehicleAlpha )

Link to comment

الحين بدي فتكنش اخفاء ردار  يعني الخريطة يلي تجيي من جنب صغيرة

كود ده يخفي بس دم وفلوس ودرع

-- Hide the hud when the resource is started
local components = { "weapon", "ammo", "health", "clock", "money", "breath", "armour", "wanted" }
 
addEventHandler("onClientResourceStart", getResourceRootElement(getThisResource()),
function ()
	for _, component in ipairs( components ) do
		setPlayerHudComponentVisible( component, false )
	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...