Jump to content

ابي مساعدة بمود


Recommended Posts

السلام عليكم

شباب انا مبتدا بالبرمجة وما افهم شي فيها

سويت مود ارسال رسالة علي شاشة الجميع ..

بس انا مسويه بلوحة ..

يعني افتح لوحة واكتب رسالة واضغط ارسال ويرسل

انا ابي ما يكون لوحة .. ابي يكون من كلمه من اف 8 بعدها الكلام وانتر ويطلع

+ ابي اسوي اختصار للكلمة بالكيبورد .. مشان اضغط علي حرف واكتب الكلام وخلاص

وشكرا ❤

Link to comment
1 hour ago, 3laa33 said:

function sendmessage( _, ... )
arg = {...}
outputChatBox(""..arg.."")
end
addCommandHandler ( "send", sendmessage )

الكود كلينت :3 

ماراح يشتغل اصلن 

و قبل م ندخل في معركه بالموضوع روح جربه ض

Link to comment
3 hours ago, 3laa33 said:

ادري انه بيظهر للكتب الرسالة هو يسوي لوب  او يسويه سيرفر

 مب لازم اسويله كل شئ

حتى لو يسوي لوب ماراح يظهر  له

لانه بالكلينت مافيه ارقمنت لاعب 

Link to comment
4 minutes ago, Abdul KariM said:

حتى لو يسوي لوب ماراح يظهر  له

لانه بالكلينت مافيه ارقمنت لاعب 

لوب سيرفر وترايجر :3 
او يسويه سيرفر ويضيف ارقمنت زيادة 

Link to comment
function shout ( player, cmd, ... )
    local accountname = getAccountName ( getPlayerAccount ( player ) )
    if isObjectInACLGroup ( "user." .. accountname, aclGetGroup ( "Admin" ) ) then
        local message = table.concat ( { ... }," " )
        textDisplay = textCreateDisplay ( )
        textItem = textCreateTextItem ( message, 329, 619, 990, 733, tocolor(255, 255, 255, 255), 1.00, "beckett", "left", "top", false, false, false, false, false)
        textDisplayAddText ( textDisplay, textItem )
        for _, thePlayer in ipairs ( getElementsByType ( "player" ) ) do
            textDisplayAddObserver ( textDisplay, thePlayer )
        end
        setTimer (
            function ( )
                textDestroyTextItem ( textItem )
                textDestroyDisplay ( textDisplay )
            end
            ,10000, 1

وش الخطا باحداثيات سطر 6؟؟ الكلام صار ما يطلع

Link to comment
1 hour ago, #-'Dr.LiOn'<3 said:

وش الخطا باحداثيات سطر 6؟؟ الكلام صار ما يطلع

 

جرب هاد

 

function shout ( player, cmd, ... )
    local accountname = getAccountName ( getPlayerAccount ( player ) )
    if isObjectInACLGroup ( "user." .. accountname, aclGetGroup ( "Admin" ) ) then
        local message = table.concat ( { ... }," " )
        textDisplay = textCreateDisplay ( )
        textItem = textCreateTextItem ( message, 329, 619, 990, 733, tocolor(255, 255, 255, 255), 1.00, "beckett", "left", "top", false, false, false, true, false)
        textDisplayAddText ( textDisplay, textItem )
        for _, thePlayer in ipairs ( getElementsByType ( "player" ) ) do
            textDisplayAddObserver ( textDisplay, thePlayer )
        end
        setTimer (
            function ( )
                textDestroyTextItem ( textItem )
                textDestroyDisplay ( textDisplay )
            end)
            ,10000, 1

 

 

ترا ماعرف انا عشان مايجي شخص ويتفلسف يقول وش تسوي انا احاول معه بس ونشالله افيده

Edited by MR_Mahmoud
Link to comment
11 minutes ago, MR_Mahmoud said:

 

جرب هاد

 


function shout ( player, cmd, ... )
    local accountname = getAccountName ( getPlayerAccount ( player ) )
    if isObjectInACLGroup ( "user." .. accountname, aclGetGroup ( "Admin" ) ) then
        local message = table.concat ( { ... }," " )
        textDisplay = textCreateDisplay ( )
        textItem = textCreateTextItem ( message, 329, 619, 990, 733, tocolor(255, 255, 255, 255), 1.00, "beckett", "left", "top", false, false, false, true, false)
        textDisplayAddText ( textDisplay, textItem )
        for _, thePlayer in ipairs ( getElementsByType ( "player" ) ) do
            textDisplayAddObserver ( textDisplay, thePlayer )
        end
        setTimer (
            function ( )
                textDestroyTextItem ( textItem )
                textDestroyDisplay ( textDisplay )
            end)
            ,10000, 1

 

 

ترا ماعرف انا عشان مايجي شخص ويتفلسف يقول وش تسوي انا احاول معه بس ونشالله افيده

غلط

tocolor

Client-Side

Edited by Deativated
Link to comment

وتكتب وتقدر من اف 8 تكتب عاجل وكلامك  N سويتلك ياه تقدر تكتب من حرف

كلنت

----------------------------------------
-----------By_MR_Mahmoud_M.H------------
----------------------------------------
local sX, sY = guiGetScreenSize ()

addEventHandler("onClientRender", root, function ()
    if ( getElementData ( resourceRoot, "Have_" ) == true ) then
        local Lines = getChatboxLayout ()["chat_lines"]
	    if ( Lines <= 10 ) then
	        Lines = Lines + 1
	    elseif ( Lines >= 20 ) then
	        Lines = Lines - 1
	    else
	        Lines = Lines
	    end
		if ( getElementData ( resourceRoot, "Msg_" ) == "1" ) then
		    setElementData ( resourceRoot, "Have_", false )
		else
dxDrawText( "#FF0000[ #FFBC00".. getElementData ( resourceRoot, "By_" ) .." #FF0000] #1EFF00: " .. getElementData ( resourceRoot, "Msg_" ),  301, 394, 856, 463, tocolor(255, 255, 255, 255), 2,"default-bold", "left", "top", false, false, false, true, false )
		end
	end
end)
bindKey("N", "down","chatbox","عاجل")

 

سيرفر 

 

local Groups = { "lool" }

function isPlayerAdmin(player)
    for k,v in ipairs ( Groups ) do
        if ( isObjectInACLGroup("user." .. getAccountName(getPlayerAccount(player)), aclGetGroup(v)) ) then
		    return true
		end
	end
end

addCommandHandler("عاجل", function ( player, cmd, ... )
    if not ( isGuestAccount ( getPlayerAccount ( player ) ) ) then
	    if ( isPlayerAdmin ( player ) ) then
		    local msg = {...}
		    local message = table.concat(msg, " ")
			setElementData ( resourceRoot, "Have_", true )
			setElementData ( resourceRoot, "Msg_", message )
			if ( getElementData ( player, "Name" ) and getElementData ( player, "Name" ) ~= false ) then
				setElementData ( resourceRoot, "By_", getElementData ( player, "Name" ))
			else
				setElementData ( resourceRoot, "By_", getPlayerName ( player ))
			end
		else
		    outputChatBox("* ليس لديك خاصية العاجل !", player, 255, 0, 0, true)
		end
	else
	    outputChatBox("* الرجاء تسجيل الدخول !", player, 255, 0, 0, true)
	end
end)

lool سوي رتبت  

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

lool الرتبة اليقدر يكتب فيها العاجل 

تقدر تغيرها من اول سطر السيرفر

وازا تبي تمسح العاجل تكتب رقم 1  ويمسح

المهم بتمنا تدعيلي ومبروك عليك 

 

Edited by MR_Mahmoud
Link to comment

يا حبيبي انا قلتلك لو يعني مثال اعتبرني سرقتها انت شدخلك 

 

 

هوة قال يبيها يكتب كلمة من اف 8 ويكتب العاجل هيك بيقصد ولو يبي لوحة من اف 8 تفتح انا جاهز اسويله ياها

 

Link to comment
Guest
This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...