Jump to content

مساعدة


Recommended Posts

Posted

                                                                                                ▂ ▃ ▄ ▅ ▆ ▇ ▉ ▊ ▋اٌلِـسُلِـاٌمِـ عٍلِـيٌـكُمِـ وِرُحٍمِـةُ اٌلِـلِـهٌ وِبّـرُكُاٌتْهٌ ▋▊ ▉ ▇ ▆ ▅ ▄ ▃ ▂ 

 

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

                                        هاد ملف الكلنت


GUIEditor = {
    label = {}
}
addEventHandler("onClientResourceStart", resourceRoot,
    function()
local screenW, screenH = guiGetScreenSize()
        wind = guiCreateWindow((screenW - 377) / 2, (screenH - 306) / 2, 377, 306, "اسم العربي ", false)
        guiWindowSetSizable(wind, false)
        guiSetProperty(wind, "CaptionColour", "FFFF0000")
		guiSetVisible(wind,false)
        edit = guiCreateEdit(28, 69, 324, 32, "", false, wind)
        give = guiCreateButton(109, 139, 148, 47, "تطبيق اسم العربي", false, wind)
        guiSetProperty(give, "NormalTextColour", "FFAAAAAA")
        GUIEditor.label[1] = guiCreateLabel(3, 194, 374, 15, "_______________________________________________________________________________________________________", false, wind)
        guiSetProperty(GUIEditor.label[1], "NormalTextColour", "FFAAAAAA")
        ex = guiCreateButton(106, 244, 151, 45, "اغلاق", false, wind)
        guiSetProperty(ex, "NormalTextColour", "FFAAAAAA")    
    end
)



bindKey("F7", "down" ,
 
    function ()
   
    guiSetVisible ( wind , not guiGetVisible ( wind ) )
 
   
    showCursor ( not isCursorShowing (  ) )
 
 
    end
 )


addEventHandler ( "onClientGUIClick" , root ,
 
function (  )
 
 --نجرب
 

if ( source == give ) then 
 

local Num = guiGetText ( edit )
 
if ( Num ~= "" ) and ( tonumber ( Num ) ) then

 
triggerServerEvent  ( "GiveMoney" , localPlayer , Num )
 
           end
        end
    end
 )
 
addEventHandler ( "onClientGUIClick", resourceRoot,

function (   )

if ( source == ex ) then

guiSetVisible(wind,false)

showCursor(false)

end
end)

 

 

هاد ملف السيرفر

 

 

 

addEvent ( "GiveMoney" , true )
addEventHandler ( "GiveMoney" , root ,
function ( number )

setPlayerNametagText ( source,number )

outputChatBox ( "#FF0000اسمك الأن  #00FF00عربي", getRootElement(), 255, 255, 255, true )

	end
	)

 

p_1077um0y81.png

Posted (edited)

وش يطلعلك بالدي بق

debugscript 3

باف 8

Edited by Master_MTA

Skype 01100001 01101100 01101001 01011111 01101101 01110100 00110001 00111001 00111001 00111001

every thing is gonna be alright

every thing is gonna be okay

it's gonna be a good good life

that's what my therapist say

Posted
--#Client
GUIEditor = {
    label = {}
}
addEventHandler("onClientResourceStart", resourceRoot,
    function()
local screenW, screenH = guiGetScreenSize()
        wind = guiCreateWindow((screenW - 377) / 2, (screenH - 306) / 2, 377, 306, "اسم العربي ", false)
        guiWindowSetSizable(wind, false)
        guiSetProperty(wind, "CaptionColour", "FFFF0000")
		guiSetVisible(wind,false)
        edit = guiCreateEdit(28, 69, 324, 32, "", false, wind)
        give = guiCreateButton(109, 139, 148, 47, "تطبيق اسم العربي", false, wind)
        guiSetProperty(give, "NormalTextColour", "FFAAAAAA")
        GUIEditor.label[1] = guiCreateLabel(3, 194, 374, 15, "_______________________________________________________________________________________________________", false, wind)
        guiSetProperty(GUIEditor.label[1], "NormalTextColour", "FFAAAAAA")
        ex = guiCreateButton(106, 244, 151, 45, "اغلاق", false, wind)
        guiSetProperty(ex, "NormalTextColour", "FFAAAAAA")    
    end
)



bindKey("F7", "down" ,
 
    function ()
   
    guiSetVisible ( wind , not guiGetVisible ( wind ) )
 
   
    showCursor ( not isCursorShowing (  ) )
 
 
    end
 )


addEventHandler ( "onClientGUIClick" , root ,
 
function (  )
 
 --نجرب
 

if ( source == give ) then 
 

local Num = guiGetText ( edit )
 
if ( Num ~= "" ) then 

 
triggerServerEvent  ( "GiveMoney" , localPlayer , Num )
 
           end
        end
    end
 )
 
addEventHandler ( "onClientGUIClick", resourceRoot,

function (   )

if ( source == ex ) then

guiSetVisible(wind,false)

showCursor(false)

end
end)
--#Server
addEvent ( "GiveMoney" , true )
addEventHandler ( "GiveMoney" , root ,
function ( Num )


setPlayerNametagText ( source,Num )

outputChatBox ( "#FF0000اسمك الأن  #00FF00عربي "..Num.."",source, 255, 255, 255, true )

	end
	)
	

 

76561198264399996.png

 

 

 

 

Posted (edited)
19 hours ago, Ahmed Ly said:

--#Client
GUIEditor = {
    label = {}
}
addEventHandler("onClientResourceStart", resourceRoot,
    function()
local screenW, screenH = guiGetScreenSize()
        wind = guiCreateWindow((screenW - 377) / 2, (screenH - 306) / 2, 377, 306, "اسم العربي ", false)
        guiWindowSetSizable(wind, false)
        guiSetProperty(wind, "CaptionColour", "FFFF0000")
		guiSetVisible(wind,false)
        edit = guiCreateEdit(28, 69, 324, 32, "", false, wind)
        give = guiCreateButton(109, 139, 148, 47, "تطبيق اسم العربي", false, wind)
        guiSetProperty(give, "NormalTextColour", "FFAAAAAA")
        GUIEditor.label[1] = guiCreateLabel(3, 194, 374, 15, "_______________________________________________________________________________________________________", false, wind)
        guiSetProperty(GUIEditor.label[1], "NormalTextColour", "FFAAAAAA")
        ex = guiCreateButton(106, 244, 151, 45, "اغلاق", false, wind)
        guiSetProperty(ex, "NormalTextColour", "FFAAAAAA")    
    end
)



bindKey("F7", "down" ,
 
    function ()
   
    guiSetVisible ( wind , not guiGetVisible ( wind ) )
 
   
    showCursor ( not isCursorShowing (  ) )
 
 
    end
 )


addEventHandler ( "onClientGUIClick" , root ,
 
function (  )
 
 --نجرب
 

if ( source == give ) then 
 

local Num = guiGetText ( edit )
 
if ( Num ~= "" ) then 

 
triggerServerEvent  ( "GiveMoney" , localPlayer , Num )
 
           end
        end
    end
 )
 
addEventHandler ( "onClientGUIClick", resourceRoot,

function (   )

if ( source == ex ) then

guiSetVisible(wind,false)

showCursor(false)

end
end)
--#Server
addEvent ( "GiveMoney" , true )
addEventHandler ( "GiveMoney" , root ,
function ( Num )


setPlayerNametagText ( source,Num )

outputChatBox ( "#FF0000اسمك الأن  #00FF00عربي "..Num.."",source, 255, 255, 255, true )

	end
	)
	

 

 

 

 

شكرا كتير الك ياملك ولله انك كفو

 

 

Edited by MR_Mahmoud

p_1077um0y81.png

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