Jump to content

تعديل بسيط


Adham

Recommended Posts

شف يبوي

p_4736z2sv1.png

مش ملاحظ الصوره

الحاجه التانيه

الكلام التاني

[Console]: has sent 

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

ليش طالعه برا ؟

لين احط كلام كبير

يطلع برا الشاشه السودا

انا ابي الكلام الكبير هذا

يكون جوأ الشاشه

Link to comment
Just now, Deativated said:

شف يبوي

p_4736z2sv1.png

مش ملاحظ الصوره

الحاجه التانيه

الكلام التاني

[Console]: has sent 

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

ليش طالعه برا ؟

لين احط كلام كبير

يطلع برا الشاشه السودا

انا ابي الكلام الكبير هذا

يكون جوأ الشاشه


مسوي لك مثال في الـ توب بار
نفس اللي سويته لك هناك سويه هنا

مشكلتك مشكلة احداثيات بس

Link to comment
Just now, Killer Project said:


مسوي لك مثال في الـ توب بار
نفس اللي سويته لك هناك سويه هنا

مشكلتك مشكلة احداثيات بس

تقدر تسوهالي

مسويها من الصبح م ظبت برده

 

Link to comment
21 minutes ago, Killer Project said:




ما يحتاج كل ذا


 


DxX = 800 -- اي رقم حسب طول الدي اكس اللي تبيه  
dxDrawRectangle((x - DxX )/2, 0, DxX, R, tocolor(0, 0, 0, 130))

 

 

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

هو يتكلم عن التكست

Link to comment
local x, y = guiGetScreenSize()
local Rows = {}
local R = 0

function outputClient(text, r, g, b)
	local r = r or 255
	local g = g or 255
	local b = b or 255
    local color = tocolor(r, g, b, 255)
	R = R + 17
	table.insert(Rows, {text, color, R})
	setTimer(function()
		setTimer(function()
			if R > 0 then
				R = R - 1.0
				for i, row in pairs(Rows) do
					Rows[i] = {row[1], row[2], row[3] - 1.0}
					if row[3] <= 0 then
						table.remove(Rows, i)
					end
				end
			end
		end, 50, 17)
	end, 10000, 1)
end
addEvent("calloutputClient", true)
addEventHandler("calloutputClient", root, outputClient)

function drawRows()

local screenW, screenH = guiGetScreenSize()

dxDrawRectangle((screenW - 600), 0, 600, R, tocolor(50, 50, 50, 150), false)

for i, row in pairs(Rows) do

dxDrawText(" "..row[1], (screenW - 600), row[3] - 20, ((screenW - 600)) + 600, row[3], row[2], 1.00, "default-bold", "left", "center", false, false, false, false, false)

end

end
addEventHandler("onClientPreRender", root, drawRows)



بس ؟

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