Jump to content

==>ҭᾄlᾄl

Members
  • Posts

    299
  • Joined

  • Last visited

Everything posted by ==>ҭᾄlᾄl

  1. function gsa(element,type) a = guiGetAlpha(element) if type == open and a == 0 then timer = setTimer(function () guiSetAlpha(element,a + 0.1) if a == 1 then killTimer(timer)end end ,1000,0) elseif type == close and a == 1 then timerr = setTimer(function () guiSetAlpha(element,a - 0.1) if a == 0 then killTimer(timerr)end end ,1000,0) end end لفتح النافذه gsa(window,open) لقفل نافذه gsa(window,close) ما جربته
  2. #~> Copy of mine . ما نسخته منك وانا رديت وما شفت ردك
  3. GUIEditor_Window = {} GUIEditor_Button = {} GUIEditor_Label = {} HaC = guiCreateWindow(237,136,335,257,"Hac Panel",false) GUIEditor_Button[1] = guiCreateButton(307,171,167,24,"القفز",false,HaC) GUIEditor_Button[2] = guiCreateButton(308,219,165,26,"القفز بالدراجه",false,HaC) GUIEditor_Button[3] = guiCreateButton(312,267,158,21,"قيآدهـ على البحر",false,HaC) GUIEditor_Button[4] = guiCreateButton(318,317,146,21,"الطيرآن بالسيآرهـ",false,HaC) GUIEditor_Label[1] = guiCreateLabel(247,343,317,12,"",false) GUIEditor_Label[2] = guiCreateLabel(246,346,318,14,"------------------------------------------------------------------------------",false,HaC) GUIEditor_Label[3] = guiCreateLabel(294,363,220,24,"لتشغيل الهاك او اطفائه قم بالضغط عليه",false,HaC)
  4. اتوقع انه موب حطا الازرار والصور...الخ في النافذه
  5. 1 * 1000 -- ثانية 2 * 1000 -- ثانيتن 3 * 1000 -- ثلاث ثواني
  6. addEventHandler("onPlayerJoin", root, function() setElementData(source, "IP", getPlayerIP(source)) end) addEventHandler ("onClientGUIClick", getRootElement(), function () if source == GUIEditor_Button[] then ip = getElementData(localPlayer, "IP") setClipboard ( "" .. ip .. "" ) end end)
  7. سكربت رائع جدا فجرت القسم بحصرياتك تقبل مروري
  8. bindKey ( "O" , "down" , function() if ( guiGetVisible ( GUIEditor_Window[1] ) == true ) then guiSetVisible ( GUIEditor_Window[1] ,false ) showCursor (false ) guiSetInputEnabled(false) elseif ( guiGetVisible ( GUIEditor_Window[1] ) == false ) then guiSetVisible ( GUIEditor_Window[1] ,true ) showCursor (false ) guiSetInputEnabled(true) end end )
  9. bindKey("O","down" function () if (guiGetVisible(myPanel) == true) then guiSetVisible(myPanel, false) showCursor(false) else showCursor(true) guiSetVisible(myPanel, true) end end )
  10. يسسسسلموو والله ي طلال دايم انت الاول فـ الافادهـ يعطيكـ ربي الف عافيهه =] ماقصرت واللهه الله يسلمك اي شي ثاني لا يردك الكيبورد
  11. --- server side function createTeamsOnStart () team = createTeam ( "team1", 0, 255, 0 ) end addEventHandler("onResourceStart", resourceRoot, createTeamsOnStart) addEvent("setTeam",true) addEventHandler("setTeam",root, function() setPlayerTeam ( source,team ) end)
  12. viewtopic.php?f=119&t=51340&p=500599&hilit=createVehicle#p500599 ,,, createVehicle(ID,X,Y,Z) ID = اي دي السياره X,Y,Z = احداثيات مكان السياره
  13. function teleport () local x, y, z = 2167.21558, 972.79700, 10.26484 if isPedInVehicle(localPlayer) then setElementPosition( getPedOccupiedVehicle (localPlayer), x, y, z ) end end addCommandHandler("خروج", teleport)
×
×
  • Create New...