Jump to content

مساعدة في لوحة


Recommended Posts

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

انا سويت لوحة صك الكل فريز + فك الفريز

كل شيئ شغال لكن سويت ايديت بوكس للسبب

كيف اخليه يحط سبب بالشات؟؟

GUIEditor = { 
    edit = {}, 
    button = {}, 
    label = {}, 
    window = {}, 
} 
GUIEditor.window[1] = guiCreateWindow(188, 100, 444, 363, ".:[Freze All]:.", false) 
guiWindowSetSizable(GUIEditor.window[1], false) 
guiSetAlpha(GUIEditor.window[1], 1.00) 
guiSetVisible (GUIEditor.window[1],false) 
GUIEditor.label[1] = guiCreateLabel(154, 35, 142, 42, ".:[Freze All]:.", false, GUIEditor.window[1]) 
guiSetFont(GUIEditor.label[1], "sa-header") 
GUIEditor.label[2] = guiCreateLabel(292, 132, 55, 15, "السبب :", false, GUIEditor.window[1]) 
GUIEditor.edit[1] = guiCreateEdit(143, 113, 139, 57, "", false, GUIEditor.window[1]) 
GUIEditor.button[1] = guiCreateButton(151, 183, 113, 60, "FreezeAll", false, GUIEditor.window[1]) 
guiSetProperty(GUIEditor.button[1], "NormalTextColour", "FFD6DC3B") 
GUIEditor.button[2] = guiCreateButton(96, 253, 221, 67, "UnFreezeAll", false, GUIEditor.window[1]) 
guiSetProperty(GUIEditor.button[2], "NormalTextColour", "FFFD2919") 
GUIEditor.label[3] = guiCreateLabel(11, 330, 148, 23, "By : #x"HMO-GODA & Ja[B]eR ", false, GUIEditor.window[1]) 
  
  
  
  
--client 
  
addCommandHandler("freezall", function(  ) 
    guiSetVisible(GUIEditor.window[1], not guiGetVisible ( GUIEditor.window[1]) ) 
    showCursor( guiGetVisible (GUIEditor.window[1]) ) 
end ) 
  
addEventHandler( "onClientGUIClick", resourceRoot, 
function (    ) 
    if ( source == GUIEditor.button[1] ) then 
            triggerServerEvent( "FreezeAll", localPlayer ) 
    elseif ( source == GUIEditor.button[2] ) then 
            triggerServerEvent( "RemoveFreezeAll", localPlayer ) 
        end 
    end 
) 
----- 
--server 
addEvent ( "FreezeAll", true ) 
addEventHandler ( "FreezeAll", root, function (    ) 
    for _,v in ipairs ( getElementsByType ( "player" ) ) do 
        setElementFrozen ( v, true ) 
    end 
end ) 
  
addEvent ( "RemoveFreezeAll", true ) 
addEventHandler ( "RemoveFreezeAll", root, function (    ) 
    for _,v in ipairs ( getElementsByType ( "player" ) ) do 
        setElementFrozen ( v, false ) 
    end 
end ) 
  
  
  
  
 

Link to comment

بالسيرفر حط هذا الكود واستبدله بالكود اللي حطيته + تعديل الكلنت تحت كود السيرفر حطيته لك تحت

سيرفر

  
addEvent("FreezeAll", true) 
addEvent("RemoveFreezeAll", true) 
  
function Freeze(text) 
     for _ , v in ipairs(getElementsByType('player')) do 
          outputChatBox(getPlayerName(source)..' Slapped '..getPlayerName(v)..' [ '..text..' ]', root, 255, 0, 0, true) 
          setElementFrozen(v, true) 
     end 
end 
function unFreeze() 
     for _ , v in ipairs(getElementsByType('player')) do 
          setElementFrozen(v, false) 
     end 
end 
addEventHandler("FreezeAll", root, Freeze) 
addEventHandler("RemoveFreezeAll", root, unFreeze) 
  

كلنت

  
addEventHandler( "onClientGUIClick", root, 
function (    ) 
   if ( source == GUIEditor.button[1] ) then 
           triggerServerEvent( "FreezeAll", localPlayer, guiGetText( GUIEditor.edit[1] ) ) 
   elseif ( source == GUIEditor.button[2] ) then 
           triggerServerEvent( "RemoveFreezeAll", localPlayer ) 
   end 
end) 

امسح كل الأكواد اللي تحت هذا السطر بعد ماتستبدله ^

Link to comment

addEventHandler( "onClientGUIClick", resourceRoot, 
function (    ) 
if ( source == GUIEditor.button[1] ) then 
if guiGetText(GUIEditor.edit[1]) ~= " "  then 
triggerServerEvent( "FreezeAll", localPlayer,guiGetText(GUIEditor.edit[1])) 
else 
outputChatBox "اكتب السبب" 
end 
elseif ( source == GUIEditor.button[2] ) then 
triggerServerEvent( "RemoveFreezeAll", localPlayer ) 
end 
end) 
Link to comment
تفضل
addEventHandler('onClientGUIClick',GUIEditor.button[1],function ( ) 
if  guiGetText (GUIEditor.edit[1]) then  
outputChatBox (" السبب لانه "  ..  guiGetText (GUIEditor.edit[1]).."        ",255,0,0) 
end 
end 
) 

addEventHandler( "onClientGUIClick", resourceRoot, 
function (    ) 
if ( source == GUIEditor.button[1] ) then 
if guiGetText(GUIEditor.edit[1]) ~= " "  then 
triggerServerEvent( "FreezeAll", localPlayer,guiGetText(GUIEditor.edit[1])) 
else 
outputChatBox "اكتب السبب" 
end 
elseif ( source == GUIEditor.button[2] ) then 
triggerServerEvent( "RemoveFreezeAll", localPlayer ) 
end 
end) 

اعتقد ان رد جنرال يكفي و يوفي :fadein:

Link to comment
تفضل
addEventHandler('onClientGUIClick',GUIEditor.button[1],function ( ) 
if  guiGetText (GUIEditor.edit[1]) then  
outputChatBox (" السبب لانه "  ..  guiGetText (GUIEditor.edit[1]).."        ",255,0,0) 
end 
end 
) 

addEventHandler( "onClientGUIClick", resourceRoot, 
function (    ) 
if ( source == GUIEditor.button[1] ) then 
if guiGetText(GUIEditor.edit[1]) ~= " "  then 
triggerServerEvent( "FreezeAll", localPlayer,guiGetText(GUIEditor.edit[1])) 
else 
outputChatBox "اكتب السبب" 
end 
elseif ( source == GUIEditor.button[2] ) then 
triggerServerEvent( "RemoveFreezeAll", localPlayer ) 
end 
end) 

اعتقد ان رد جنرال يكفي و يوفي :fadein:

اعتقد ان مالك دخل !!

+ مافي تحقق بكود جنرال :arrowup:

Link to comment

1- المنتدي عام

2- اقنعتني صراحة علي اساس التحقق بيضر =,=

3 - التحقق حقك ما بيضبط

4 - انت تارك مسابقة بلسترنق لو تركها فارغة التحقق بيتم علي اي حال يعني كود تقريباً نفس كود جنرال !!!!

Link to comment
1- المنتدي عام

2- اقنعتني صراحة علي اساس التحقق بيضر =,=

3 - التحقق حقك ما بيضبط

4 - انت تارك مسابقة بلسترنق لو تركها فارغة التحقق بيتم علي اي حال يعني كود تقريباً نفس كود جنرال !!!!

اعذرني ع الخطاء

بس لازم يكون في تحقق والا راح يظهر بالشات رساله فاضيه

Link to comment
1- المنتدي عام

2- اقنعتني صراحة علي اساس التحقق بيضر =,=

3 - التحقق حقك ما بيضبط

4 - انت تارك مسابقة بلسترنق لو تركها فارغة التحقق بيتم علي اي حال يعني كود تقريباً نفس كود جنرال !!!!

اعذرني ع الخطاء

بس لازم يكون في تحقق والا راح يظهر بالشات رساله فاضيه

انا قصدي لما قريت كودك ما شفت الا التحقق اللي ما بيتم حتي لو فاضية

فبكذا كودك مثل جنرال فقلت كود جنرال يكفي

و بس خلصت الحكاية

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