Jump to content

مشكلة بأبعاد الشاشة


SAM!!

Recommended Posts

السلام عليكم ورحمة الله

عند تصميم مود 

يجي لي المود مظبط لان شاشاتي مقلا 1024

مثلا لاعب اخر بالسيرفر شاشتة 800 تجية بنص الشاشة والمفروض المود باليمين مثلا

ارجو حل المشكلة لان ال center

ماتنفع الا لو مسوي ويندو 

لو سويت مثلا ليبل علي الشاشة يمينها او يسارها تظبط لي وتخربط لباقي العيال لان شاشتهم مو مثلي

ابي حل لاهنتم

وشكرا

Link to comment
Just now, SAM!! said:

#BrosS

اكيد انا مسوية بالجيو ايتدور

+ انت تقول سوية سينتر

انا اسوية سينتر ولما احركة من مكانة يضيع كود السنتر مادري ليش

لا تحركه من مكانه

هات كود اللوحة بظبطه لك

+ هات مقاس شاشتك بالظبط اللي صممت عليه اللوحة

Link to comment
21 hours ago, SAM!! said:

#Himoo

طيب الحين لو معي اكثر من ليبل وصورة عايز اظبطهم الحط الكود ذا كلة فوق كل ليبل وصورة؟ ولا وش الوضع؟

لا تقدر تسويهم ف الجيو ايديتور

او عن طريق ضرب الاحداثيات مثل ما قال الاخ بروس

Link to comment
      dxDrawText("Prees F2 To Show/Hide The Best", 614 - 1, 170 - 1, 778 - 1, 187 - 1, tocolor(0, 0, 0, 255), 1.00, "default-bold", "left", "top", false, false, false, false, false)

dxDrawText("Prees F2 To Show/Hide The Best", 614 + 1, 170 - 1, 778 + 1, 187 - 1, tocolor(0, 0, 0, 255), 1.00, "default-bold", "left", "top", false, false, false, false, false)

dxDrawText("Prees F2 To Show/Hide The Best", 614 - 1, 170 + 1, 778 - 1, 187 + 1, tocolor(0, 0, 0, 255), 1.00, "default-bold", "left", "top", false, false, false, false, false)

dxDrawText("Prees F2 To Show/Hide The Best", 614 + 1, 170 + 1, 778 + 1, 187 + 1, tocolor(0, 0, 0, 255), 1.00, "default-bold", "left", "top", false, false, false, false, false)

dxDrawText("Prees F2 To Show/Hide The Best", 614, 170, 778, 187, tocolor(232, 253, 0, 255), 1.00, "default-bold", "left", "top", false, false, false, false, false)

اظبطها لي لاهنت

#BrosS

Link to comment
21 hours ago, SAM!! said:

      dxDrawText("Prees F2 To Show/Hide The Best", 614 - 1, 170 - 1, 778 - 1, 187 - 1, tocolor(0, 0, 0, 255), 1.00, "default-bold", "left", "top", false, false, false, false, false)

dxDrawText("Prees F2 To Show/Hide The Best", 614 + 1, 170 - 1, 778 + 1, 187 - 1, tocolor(0, 0, 0, 255), 1.00, "default-bold", "left", "top", false, false, false, false, false)

dxDrawText("Prees F2 To Show/Hide The Best", 614 - 1, 170 + 1, 778 - 1, 187 + 1, tocolor(0, 0, 0, 255), 1.00, "default-bold", "left", "top", false, false, false, false, false)

dxDrawText("Prees F2 To Show/Hide The Best", 614 + 1, 170 + 1, 778 + 1, 187 + 1, tocolor(0, 0, 0, 255), 1.00, "default-bold", "left", "top", false, false, false, false, false)

dxDrawText("Prees F2 To Show/Hide The Best", 614, 170, 778, 187, tocolor(232, 253, 0, 255), 1.00, "default-bold", "left", "top", false, false, false, false, false)

اظبطها لي لاهنت

#BrosS

اخوي حاول وخله يساعدك مو جاهز + هو شرحلك كيف فوق

Link to comment

تقدر تسوي عن طريق فنكشن

مثال :

حط هالكود في البداية 

_dxDrawImage = dxDrawImage
_dxDrawRectangle = dxDrawRectangle
_dxDrawText = dxDrawText
_dxDrawLine = dxDrawLine
local sx, sy = guiGetScreenSize (	);
local sx, sy = ( sx / 800 ), ( sy / 600 );
function dxDrawImage ( x, y, w, h, filename, ... )
	if ( ... ) then
		_dxDrawImage ( x * sx, y * sy, w * sx, h * sy, filename, ... );
	else
		_dxDrawImage ( x * sx, y * sy, w * sx, h * sy, filename );
	end
end
function dxDrawRectangle ( x, y, w, h, ... )
	if ( ... ) then
		_dxDrawRectangle ( x * sx, y * sy, w * sx, h * sy, ... );
	else
		_dxDrawRectangle ( x * sx, y * sy, w * sx, h * sy );
	end
end
function dxDrawText ( text, x, y, w, h, ... )
local w, h = w or 0, h or 0
	if ( ... ) then
		_dxDrawText ( text, x * sx, y * sy, w * sx, h * sy, ... );
	else
		_dxDrawText ( text, x * sx, y * sy, w * sx, h * sy );
	end
end
function dxDrawLine ( x, y, w, h, clr, ... )
	if ( ... ) then
		_dxDrawLine ( x * sx, y * sy, w * sx, h * sy, clr, ... );
	else
		_dxDrawLine ( x * sx, y * sy, w * sx, h * sy, clr );
	end
end

 

Edited by #,+( _xiRoc[K]; >
  • Like 2
Link to comment
weebx,weeby = guiGetScreenSize()
x,y = (weebx/800), (weeby/600)
addEventHandler("onClientRender", root,
    function()
      dxDrawText("Prees F2 To Show/Hide The Best", 614 - 1*x, 170 - 1*y, 778 - 1*x, 187 - 1*y, tocolor(0, 0, 0, 255), 1.00, "default-bold", "left", "top", false, false, false, false, false)

dxDrawText("Prees F2 To Show/Hide The Best", 614 + 1*x, 170 - 1*y, 778 + 1*x, 187 - 1xy, tocolor(0, 0, 0, 255), 1.00, "default-bold", "left", "top", false, false, false, false, false)

dxDrawText("Prees F2 To Show/Hide The Best", 614 - 1*x, 170 + 1*y, 778 - 1*x, 187 + 1*y, tocolor(0, 0, 0, 255), 1.00, "default-bold", "left", "top", false, false, false, false, false)

dxDrawText("Prees F2 To Show/Hide The Best", 614 + 1*x, 170 + 1*y, 778 + 1*x, 187 + 1*y, tocolor(0, 0, 0, 255), 1.00, "default-bold", "left", "top", false, false, false, false, false)

dxDrawText("Prees F2 To Show/Hide The Best", 614*x, 170*y, 778*x, 187*y, tocolor(232, 253, 0, 255), 1.00, "default-bold", "left", "top", false, false, false, false, false)
    end
)

محاولتي صح ولا لأ؟

 

#,+( _xiRoc[K]; >

وش سالفة الكود ذا؟

Link to comment
2 minutes ago, SAM!! said:

weebx,weeby = guiGetScreenSize()
x,y = (weebx/800), (weeby/600)
addEventHandler("onClientRender", root,
    function()
      dxDrawText("Prees F2 To Show/Hide The Best", 614 - 1*x, 170 - 1*y, 778 - 1*x, 187 - 1*y, tocolor(0, 0, 0, 255), 1.00, "default-bold", "left", "top", false, false, false, false, false)

dxDrawText("Prees F2 To Show/Hide The Best", 614 + 1*x, 170 - 1*y, 778 + 1*x, 187 - 1xy, tocolor(0, 0, 0, 255), 1.00, "default-bold", "left", "top", false, false, false, false, false)

dxDrawText("Prees F2 To Show/Hide The Best", 614 - 1*x, 170 + 1*y, 778 - 1*x, 187 + 1*y, tocolor(0, 0, 0, 255), 1.00, "default-bold", "left", "top", false, false, false, false, false)

dxDrawText("Prees F2 To Show/Hide The Best", 614 + 1*x, 170 + 1*y, 778 + 1*x, 187 + 1*y, tocolor(0, 0, 0, 255), 1.00, "default-bold", "left", "top", false, false, false, false, false)

dxDrawText("Prees F2 To Show/Hide The Best", 614*x, 170*y, 778*x, 187*y, tocolor(232, 253, 0, 255), 1.00, "default-bold", "left", "top", false, false, false, false, false)
    end
)

محاولتي صح ولا لأ؟

 

غلط انت سو الي قلت لك عليه فوق ^

واستخدم الفنكشن كأي شي عادي

Edited by #,+( _xiRoc[K]; >
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...