Jump to content

Waleed_A

Members
  • Posts

    39
  • Joined

  • Last visited

Details

  • Gang
    None

Waleed_A's Achievements

Rat

Rat (9/54)

0

Reputation

  1. يب ذا الي انا كنت ملاحظه من اول
  2. : The filepath of the file in the following format: ":resourceName/path". 'resourceName' is the name of the resource the file is in, and 'path' is the path from the root directory of the resource to the file. لا مو خطأ , هذي تستخدم عامة لأخذ شيء من مود ثاني, مثل اخذ صور من مود ثاني... اها توقعتها خطأ شكرا ع المعلومة
  3. اتوقع الخطأ هنا GUIEditor.staticimage[1] = guiCreateStaticImage(9, 218, 191, 64, ":shopheavyweapons//logohunter.png", false, GUIEditor.window[1]) لو تلاحظوا مسار الصورة
  4. اوكي جرب ذا GUIEditor = { window = {}, staticimage = {} } GUIEditor.window[1] = guiCreateWindow(13, 158, 209, 291, "SHOP HUNTER ver 1.3", false) guiSetVisible(GUIEditor.window[1], false) guiWindowSetSizable(GUIEditor.window[1], false) guiSetAlpha(GUIEditor.window[1], 0.60) guiSetProperty(GUIEditor.window[1], "CaptionColour", "F99DFEFD") GUIEditor.staticimage[1] = guiCreateStaticImage(9, 218, 191, 64, "shopheavyweapons/logohunter.png", false, GUIEditor.window[1]) GUIEditor.staticimage[2] = guiCreateStaticImage(15, 36, 89, 69, "shopheavyweapons/heatseek.png", false, GUIEditor.window[1]) GUIEditor.staticimage[3] = guiCreateStaticImage(112, 37, 88, 67, "shopheavyweapons/minigun.png", false, GUIEditor.window[1]) GUIEditor.staticimage[4] = guiCreateStaticImage(62, 131, 84, 68, "shopheavyweapons/rocketla.png", false, GUIEditor.window[1]) w1 = guiCreateButton(15, 108, 84, 19, "$10000", false, GUIEditor.window[1]) guiSetFont(w1, "default-bold-small") guiSetProperty(w1, "NormalTextColour", "FF53FF00") w2 = guiCreateButton(113, 108, 84, 19, "$10000", false, GUIEditor.window[1]) guiSetFont(w2, "default-bold-small") guiSetProperty(w2, "NormalTextColour", "FF53FF00") w3 = guiCreateButton(62, 199, 84, 19, "$9000", false, GUIEditor.window[1]) guiSetFont(w3, "default-bold-small") guiSetProperty(w3, "NormalTextColour", "FF53FF00") addEventHandler ("onClientGUIClick", root,function() if ( source == w1 ) then triggerServerEvent("w1",getLocalPlayer()) elseif (source == w2) then triggerServerEvent("w2",getLocalPlayer()) elseif (source == w3) then triggerServerEvent("w3",getLocalPlayer()) end end ) bindKey("f5","down",function () guiSetVisible(GUIEditor.window[1],not guiGetVisible(GUIEditor.window[1])) showCursor(guiGetVisible(GUIEditor.window[1])) end )
  5. debugscript 3 ? + تأكد انت الزر الي يفتح اللوحة F5
  6. addEventHandler("onClientGUIClick",root, function() local money = getPlayerMoney(source) if ( source == btn ) then outputChatBox("Your Money: " ..money, source, 255, 127, 0, true) end end ) جرب
  7. --Client addEventHandler("onClientGUIClick",root, function() if ( source == h ) then triggerServerEvent ("giveMoney", getLocalPlayer()) end end ) --Server addEvent( "giveMoney", true ) addEventHandler( "giveMoney", root, function() givePlayerMoney ( source, 50000 ) end ) اذا اللاعب ضغط زر h يعطيه 50000
  8. addEventHandler("onClientGUIClick",root, function() if ( source == h ) then triggerServerEvent ("NameTrigger", getLocalPlayer()) end end )
  9. نزلت النسخة الرسمية قبل كم يوم على انظمة - android - ios و النسخة مجانا يعني تشتغل على اي جهاز يدعم هالنظامين
  10. و اذا مافهمت مننا شوف موضوع وسكربت اخوي سورا https://forum.multitheftauto.com/viewtopic.php?f=161&t=52872 راح يفيدك كثير السكربت
  11. لا ي شيخ ؟ كله خطأ بخطأ لا تشرح خطأ لاهنت
  12. اوكي ذا مثال 'falanteno' version='1.0' name='***' description='***' type='script' /> امسح الي بعد الشرطتين -- مع الشرطتين ذذ
  13. من جدك ؟ تبي تحطه كذا و يشتغل على طول ؟ لا ياخي على حسب الملفات الي عندك مو نسخ و لصق عندك ملف كلينت حط اسم الملف بالميتا عندك ملف مثلا صورة ولا حاجة حط اسمها بالميتا مو نسخ لصق و يشتغل
×
×
  • Create New...