Jump to content

3 طلبات ممكن


EdeN

Recommended Posts

  • Replies 73
  • Created
  • Last Reply

Top Posters In This Topic

Top Posters In This Topic

شوف انا صلحت لك نص الشوب الباقي عليك

الكلينت

outputChatBox("** [ Shop Panel By : ===7MoDy=== ] ***",255,255,0) 
  
GUIEditor_Window = {} 
GUIEditor_TabPanel = {} 
GUIEditor_Tab = {} 
GUIEditor_Button = {} 
GUIEditor_Label = {} 
GUIEditor_Image = {} 
  
GUIEditor_Window[1] = guiCreateWindow(0.1852,0.1393,0.6303,0.6719,"شوب حمودي",true) 
GUIEditor_Button[1] = guiCreateButton(831,19,19,20,"x",false,GUIEditor_Window[1]) 
GUIEditor_TabPanel[1] = guiCreateTabPanel(9,42,843,465,false,GUIEditor_Window[1]) 
GUIEditor_Tab[1] = guiCreateTab("Shop-1#",GUIEditor_TabPanel[1]) 
GUIEditor_Image[1] = guiCreateStaticImage(21,20,172,134,"images/deagle.png",false,GUIEditor_Tab[1]) 
GUIEditor_Image[2] = guiCreateStaticImage(210,23,168,127,"images/ak47.png",false,GUIEditor_Tab[1]) 
GUIEditor_Image[3] = guiCreateStaticImage(400,19,185,135,"images/m4.png",false,GUIEditor_Tab[1]) 
GUIEditor_Image[4] = guiCreateStaticImage(609,19,186,134,"images/mp5.png",false,GUIEditor_Tab[1]) 
GUIEditor_Button[2] = guiCreateButton(34,157,146,36,"150",false,GUIEditor_Tab[1]) 
GUIEditor_Button[3] = guiCreateButton(216,158,146,36,"230",false,GUIEditor_Tab[1]) 
GUIEditor_Button[4] = guiCreateButton(416,159,146,36,"200",false,GUIEditor_Tab[1]) 
GUIEditor_Button[5] = guiCreateButton(628,159,146,36,"170",false,GUIEditor_Tab[1]) 
GUIEditor_Image[5] = guiCreateStaticImage(215,228,180,150,"images/pistol-s.png",false,GUIEditor_Tab[1]) 
GUIEditor_Image[6] = guiCreateStaticImage(9,229,188,149,"images/pistol.png",false,GUIEditor_Tab[1]) 
GUIEditor_Image[7] = guiCreateStaticImage(404,230,187,142,"images/shotgun.png",false,GUIEditor_Tab[1]) 
GUIEditor_Image[8] = guiCreateStaticImage(623,229,172,144,"images/sniper.png",false,GUIEditor_Tab[1]) 
GUIEditor_Button[6] = guiCreateButton(635,381,146,36,"300",false,GUIEditor_Tab[1]) 
GUIEditor_Button[7] = guiCreateButton(420,380,146,36,"100",false,GUIEditor_Tab[1]) 
GUIEditor_Button[8] = guiCreateButton(27,379,146,36,"50",false,GUIEditor_Tab[1]) 
GUIEditor_Button[9] = guiCreateButton(220,379,146,36,"110",false,GUIEditor_Tab[1]) 
GUIEditor_Tab[2] = guiCreateTab("Shop-2#",GUIEditor_TabPanel[1]) 
GUIEditor_Image[9] = guiCreateStaticImage(35,13,176,158,"images/spaz-12.png",false,GUIEditor_Tab[2]) 
GUIEditor_Image[10] = guiCreateStaticImage(312,11,193,160,"images/tec-9.png",false,GUIEditor_Tab[2]) 
GUIEditor_Image[11] = guiCreateStaticImage(614,6,204,169,"images/uzi.png",false,GUIEditor_Tab[2]) 
GUIEditor_Image[12] = guiCreateStaticImage(318,208,199,172,"images/grenade.png",false,GUIEditor_Tab[2]) 
GUIEditor_Button[10] = guiCreateButton(49,164,151,33,"300",false,GUIEditor_Tab[2]) 
GUIEditor_Button[11] = guiCreateButton(331,166,151,33,"120",false,GUIEditor_Tab[2]) 
GUIEditor_Button[12] = guiCreateButton(645,168,151,33,"105",false,GUIEditor_Tab[2]) 
GUIEditor_Button[13] = guiCreateButton(342,376,151,33,"1500",false,GUIEditor_Tab[2]) 
GUIEditor_Label[1] = guiCreateLabel(557,316,282,119,"7MoDy",false,GUIEditor_Tab[2]) 
guiSetFont(GUIEditor_Label[1],"sa-gothic") 
guiSetVisible(GUIEditor_Window[1],false) 
  
  
  
  
function BuyWeapon(money,id,ammo,name) 
    local m1 = getPlayerMoney(getLocalPlayer()) 
    if ( m1 >= money ) then 
        takePlayerMoney(money) 
        triggerServerEvent("onBuy",getLocalPlayer(),id,ammo) 
        outputChatBox("* You Are Bought " .. name .. "",0,255,0,true) 
    else 
        outputChatBox("* You Don't Have Enough Money",255,0,0,true) 
    end 
end 
  
addEventHandler("onClientGUIClick",getRootElement(), 
    function () 
        if ( source == GUIEditor_Button[1] ) then 
            BuyWeapon(1000,30,1000,"AK47") 
        elseif ( source == GUIEditor_Button[5] ) then 
            BuyWeapon(1500,31,1000,"M4") 
        elseif ( source == GUIEditor_Button[2] ) then 
            BuyWeapon(150,24,950,"Deagle") 
        elseif ( source == GUIEditor_Button[3] ) then 
            BuyWeapon(1500,16,20,"grenade") 
        elseif ( source == GUIEditor_Button[4] ) then 
            BuyWeapon(200,29,500,"mp5") 
  
        end 
    end 
) 
  
  
 addEvent("Open",true) 
 addEvent("Close",true) 
  
  
 addEventHandler("Open",getRootElement(), 
    function () 
        guiSetVisible(GUIEditor_Window[1],true) 
        showCursor(true) 
    end 
) 
  
addEventHandler("Close",getRootElement(), 
    function () 
        guiSetVisible(GUIEditor_Window[1],false) 
        showCursor(false) 
    end 
) 
  
  

السيرفر

addEvent("onBuy",true) 
addEventHandler("onBuy",getRootElement(), 
    function (id,ammo) 
        giveWeapon(source,id,ammo) 
    end 
) 
  
local Marker = createMarker ( 1367.599609375, -1280, 12.300000190735, "cylinder", 1.5, 255, 0, 0, 255 ) 
  
addEventHandler('onMarkerHit', Marker, 
    function ( hitPlayer ) 
        triggerClientEvent(hitPlayer,"Open",hitPlayer) 
    end 
) 
  
addEventHandler("onMarkerLeave",Marker, 
    function (hitPlayer) 
        triggerClientEvent(hitPlayer,"Close",hitPlayer) 
    end 
) 

و لقيت عندك اخطاء راجع الشوب

Link to comment
شوف انا صلحت لك نص الشوب الباقي عليك

الكلينت

outputChatBox("** [ Shop Panel By : ===7MoDy=== ] ***",255,255,0) 
  
GUIEditor_Window = {} 
GUIEditor_TabPanel = {} 
GUIEditor_Tab = {} 
GUIEditor_Button = {} 
GUIEditor_Label = {} 
GUIEditor_Image = {} 
  
GUIEditor_Window[1] = guiCreateWindow(0.1852,0.1393,0.6303,0.6719,"شوب حمودي",true) 
GUIEditor_Button[1] = guiCreateButton(831,19,19,20,"x",false,GUIEditor_Window[1]) 
GUIEditor_TabPanel[1] = guiCreateTabPanel(9,42,843,465,false,GUIEditor_Window[1]) 
GUIEditor_Tab[1] = guiCreateTab("Shop-1#",GUIEditor_TabPanel[1]) 
GUIEditor_Image[1] = guiCreateStaticImage(21,20,172,134,"images/deagle.png",false,GUIEditor_Tab[1]) 
GUIEditor_Image[2] = guiCreateStaticImage(210,23,168,127,"images/ak47.png",false,GUIEditor_Tab[1]) 
GUIEditor_Image[3] = guiCreateStaticImage(400,19,185,135,"images/m4.png",false,GUIEditor_Tab[1]) 
GUIEditor_Image[4] = guiCreateStaticImage(609,19,186,134,"images/mp5.png",false,GUIEditor_Tab[1]) 
GUIEditor_Button[2] = guiCreateButton(34,157,146,36,"150",false,GUIEditor_Tab[1]) 
GUIEditor_Button[3] = guiCreateButton(216,158,146,36,"230",false,GUIEditor_Tab[1]) 
GUIEditor_Button[4] = guiCreateButton(416,159,146,36,"200",false,GUIEditor_Tab[1]) 
GUIEditor_Button[5] = guiCreateButton(628,159,146,36,"170",false,GUIEditor_Tab[1]) 
GUIEditor_Image[5] = guiCreateStaticImage(215,228,180,150,"images/pistol-s.png",false,GUIEditor_Tab[1]) 
GUIEditor_Image[6] = guiCreateStaticImage(9,229,188,149,"images/pistol.png",false,GUIEditor_Tab[1]) 
GUIEditor_Image[7] = guiCreateStaticImage(404,230,187,142,"images/shotgun.png",false,GUIEditor_Tab[1]) 
GUIEditor_Image[8] = guiCreateStaticImage(623,229,172,144,"images/sniper.png",false,GUIEditor_Tab[1]) 
GUIEditor_Button[6] = guiCreateButton(635,381,146,36,"300",false,GUIEditor_Tab[1]) 
GUIEditor_Button[7] = guiCreateButton(420,380,146,36,"100",false,GUIEditor_Tab[1]) 
GUIEditor_Button[8] = guiCreateButton(27,379,146,36,"50",false,GUIEditor_Tab[1]) 
GUIEditor_Button[9] = guiCreateButton(220,379,146,36,"110",false,GUIEditor_Tab[1]) 
GUIEditor_Tab[2] = guiCreateTab("Shop-2#",GUIEditor_TabPanel[1]) 
GUIEditor_Image[9] = guiCreateStaticImage(35,13,176,158,"images/spaz-12.png",false,GUIEditor_Tab[2]) 
GUIEditor_Image[10] = guiCreateStaticImage(312,11,193,160,"images/tec-9.png",false,GUIEditor_Tab[2]) 
GUIEditor_Image[11] = guiCreateStaticImage(614,6,204,169,"images/uzi.png",false,GUIEditor_Tab[2]) 
GUIEditor_Image[12] = guiCreateStaticImage(318,208,199,172,"images/grenade.png",false,GUIEditor_Tab[2]) 
GUIEditor_Button[10] = guiCreateButton(49,164,151,33,"300",false,GUIEditor_Tab[2]) 
GUIEditor_Button[11] = guiCreateButton(331,166,151,33,"120",false,GUIEditor_Tab[2]) 
GUIEditor_Button[12] = guiCreateButton(645,168,151,33,"105",false,GUIEditor_Tab[2]) 
GUIEditor_Button[13] = guiCreateButton(342,376,151,33,"1500",false,GUIEditor_Tab[2]) 
GUIEditor_Label[1] = guiCreateLabel(557,316,282,119,"7MoDy",false,GUIEditor_Tab[2]) 
guiSetFont(GUIEditor_Label[1],"sa-gothic") 
guiSetVisible(GUIEditor_Window[1],false) 
  
  
  
  
function BuyWeapon(money,id,ammo,name) 
    local m1 = getPlayerMoney(getLocalPlayer()) 
    if ( m1 >= money ) then 
        takePlayerMoney(money) 
        triggerServerEvent("onBuy",getLocalPlayer(),id,ammo) 
        outputChatBox("* You Are Bought " .. name .. "",0,255,0,true) 
    else 
        outputChatBox("* You Don't Have Enough Money",255,0,0,true) 
    end 
end 
  
addEventHandler("onClientGUIClick",getRootElement(), 
    function () 
        if ( source == GUIEditor_Button[1] ) then 
            BuyWeapon(1000,30,1000,"AK47") 
        elseif ( source == GUIEditor_Button[5] ) then 
            BuyWeapon(1500,31,1000,"M4") 
        elseif ( source == GUIEditor_Button[2] ) then 
            BuyWeapon(150,24,950,"Deagle") 
        elseif ( source == GUIEditor_Button[3] ) then 
            BuyWeapon(1500,16,20,"grenade") 
        elseif ( source == GUIEditor_Button[4] ) then 
            BuyWeapon(200,29,500,"mp5") 
  
        end 
    end 
) 
  
  
 addEvent("Open",true) 
 addEvent("Close",true) 
  
  
 addEventHandler("Open",getRootElement(), 
    function () 
        guiSetVisible(GUIEditor_Window[1],true) 
        showCursor(true) 
    end 
) 
  
addEventHandler("Close",getRootElement(), 
    function () 
        guiSetVisible(GUIEditor_Window[1],false) 
        showCursor(false) 
    end 
) 
  
  

السيرفر

addEvent("onBuy",true) 
addEventHandler("onBuy",getRootElement(), 
    function (id,ammo) 
        giveWeapon(source,id,ammo) 
    end 
) 
  
local Marker = createMarker ( 1367.599609375, -1280, 12.300000190735, "cylinder", 1.5, 255, 0, 0, 255 ) 
  
addEventHandler('onMarkerHit', Marker, 
    function ( hitPlayer ) 
        triggerClientEvent(hitPlayer,"Open",hitPlayer) 
    end 
) 
  
addEventHandler("onMarkerLeave",Marker, 
    function (hitPlayer) 
        triggerClientEvent(hitPlayer,"Close",hitPlayer) 
    end 
) 

و لقيت عندك اخطاء راجع الشوب

مسترطلال في مشكله الشوب ماشتغل

Edited by Guest
Link to comment

شوف مثل ما تعرف

الشوب اكيد اكيد

ثلاث ملفات

server.lua

client.lua

meta.xml

الحين انا وقت ما قلت لك الكلينت يعني حط ذا في ملف

client.lua

والسيرفر في ملف

server.lua

عندك خطاء في الصور امسح

images/

قبل كل صورة

و لا تنسى تركب الصور في الميتا

و بعد كذا جربه و رد علي

Link to comment

مسترطلال عطيتك ايه يشتغل بس الحين مايشتغل كان تمام بس المشكله ماكنت انا لمن اضغط اغلاق الماوس مايروح

:)

بتقول عدلته وتقولي دور الاخطاء ماكن فيه

~

Edited by Guest
Link to comment
الحين بعرف كيف صارت

|Mr|-Talal07-|

الى

بو طلال؟

الحين انت تبي تزود موضوعاتك و لا طفشان؟؟

لا والله طفشان و تعرف الساعة كم الحين

:(

اذا ماتبي تساعد لاتساعد تقعد لاترد تقولي كم الساعه الحين طيب ماحد قالك ادخل الساعه .. رد على حمودي

Link to comment
بوطلال عطيتك ايه يشتغل بس الحين مايشتغل كان تمام بس المشكله ماكنت انا لمن اضغط اغلاق الماوس مايروح

:)

بتقول عدلته وتقولي دور الاخطاء ماكن فيه

~

شوف انا الحين مشغول في موضوع لليزر اذا خلصت منه اصلح الشوب كله

لعيونك

Link to comment

:love4:

مسترطلال عطيتك ايه يشتغل بس الحين مايشتغل كان تمام بس المشكله ماكنت انا لمن اضغط اغلاق الماوس مايروح

:)

بتقول عدلته وتقولي دور الاخطاء ماكن فيه

~

شوف انا الحين مشغول في موضوع لليزر اذا خلصت منه اصلح الشوب كله

لعيونك

تسلم عيونك :love4::love7:

~

Link to comment
شوف انا صلحت لك نص الشوب الباقي عليك

الكلينت

outputChatBox("** [ Shop Panel By : ===7MoDy=== ] ***",255,255,0) 
  
GUIEditor_Window = {} 
GUIEditor_TabPanel = {} 
GUIEditor_Tab = {} 
GUIEditor_Button = {} 
GUIEditor_Label = {} 
GUIEditor_Image = {} 
  
GUIEditor_Window[1] = guiCreateWindow(0.1852,0.1393,0.6303,0.6719,"شوب حمودي",true) 
GUIEditor_Button[1] = guiCreateButton(831,19,19,20,"x",false,GUIEditor_Window[1]) 
GUIEditor_TabPanel[1] = guiCreateTabPanel(9,42,843,465,false,GUIEditor_Window[1]) 
GUIEditor_Tab[1] = guiCreateTab("Shop-1#",GUIEditor_TabPanel[1]) 
GUIEditor_Image[1] = guiCreateStaticImage(21,20,172,134,"images/deagle.png",false,GUIEditor_Tab[1]) 
GUIEditor_Image[2] = guiCreateStaticImage(210,23,168,127,"images/ak47.png",false,GUIEditor_Tab[1]) 
GUIEditor_Image[3] = guiCreateStaticImage(400,19,185,135,"images/m4.png",false,GUIEditor_Tab[1]) 
GUIEditor_Image[4] = guiCreateStaticImage(609,19,186,134,"images/mp5.png",false,GUIEditor_Tab[1]) 
GUIEditor_Button[2] = guiCreateButton(34,157,146,36,"150",false,GUIEditor_Tab[1]) 
GUIEditor_Button[3] = guiCreateButton(216,158,146,36,"230",false,GUIEditor_Tab[1]) 
GUIEditor_Button[4] = guiCreateButton(416,159,146,36,"200",false,GUIEditor_Tab[1]) 
GUIEditor_Button[5] = guiCreateButton(628,159,146,36,"170",false,GUIEditor_Tab[1]) 
GUIEditor_Image[5] = guiCreateStaticImage(215,228,180,150,"images/pistol-s.png",false,GUIEditor_Tab[1]) 
GUIEditor_Image[6] = guiCreateStaticImage(9,229,188,149,"images/pistol.png",false,GUIEditor_Tab[1]) 
GUIEditor_Image[7] = guiCreateStaticImage(404,230,187,142,"images/shotgun.png",false,GUIEditor_Tab[1]) 
GUIEditor_Image[8] = guiCreateStaticImage(623,229,172,144,"images/sniper.png",false,GUIEditor_Tab[1]) 
GUIEditor_Button[6] = guiCreateButton(635,381,146,36,"300",false,GUIEditor_Tab[1]) 
GUIEditor_Button[7] = guiCreateButton(420,380,146,36,"100",false,GUIEditor_Tab[1]) 
GUIEditor_Button[8] = guiCreateButton(27,379,146,36,"50",false,GUIEditor_Tab[1]) 
GUIEditor_Button[9] = guiCreateButton(220,379,146,36,"110",false,GUIEditor_Tab[1]) 
GUIEditor_Tab[2] = guiCreateTab("Shop-2#",GUIEditor_TabPanel[1]) 
GUIEditor_Image[9] = guiCreateStaticImage(35,13,176,158,"images/spaz-12.png",false,GUIEditor_Tab[2]) 
GUIEditor_Image[10] = guiCreateStaticImage(312,11,193,160,"images/tec-9.png",false,GUIEditor_Tab[2]) 
GUIEditor_Image[11] = guiCreateStaticImage(614,6,204,169,"images/uzi.png",false,GUIEditor_Tab[2]) 
GUIEditor_Image[12] = guiCreateStaticImage(318,208,199,172,"images/grenade.png",false,GUIEditor_Tab[2]) 
GUIEditor_Button[10] = guiCreateButton(49,164,151,33,"300",false,GUIEditor_Tab[2]) 
GUIEditor_Button[11] = guiCreateButton(331,166,151,33,"120",false,GUIEditor_Tab[2]) 
GUIEditor_Button[12] = guiCreateButton(645,168,151,33,"105",false,GUIEditor_Tab[2]) 
GUIEditor_Button[13] = guiCreateButton(342,376,151,33,"1500",false,GUIEditor_Tab[2]) 
GUIEditor_Label[1] = guiCreateLabel(557,316,282,119,"7MoDy",false,GUIEditor_Tab[2]) 
guiSetFont(GUIEditor_Label[1],"sa-gothic") 
guiSetVisible(GUIEditor_Window[1],false) 
  
  
  
  
function BuyWeapon(money,id,ammo,name) 
    local m1 = getPlayerMoney(getLocalPlayer()) 
    if ( m1 >= money ) then 
        takePlayerMoney(money) 
        triggerServerEvent("onBuy",getLocalPlayer(),id,ammo) 
        outputChatBox("* You Are Bought " .. name .. "",0,255,0,true) 
    else 
        outputChatBox("* You Don't Have Enough Money",255,0,0,true) 
    end 
end 
  
addEventHandler("onClientGUIClick",getRootElement(), 
    function () 
        if ( source == GUIEditor_Button[1] ) then 
            BuyWeapon(1000,30,1000,"AK47") 
        elseif ( source == GUIEditor_Button[5] ) then 
            BuyWeapon(1500,31,1000,"M4") 
        elseif ( source == GUIEditor_Button[2] ) then 
            BuyWeapon(150,24,950,"Deagle") 
        elseif ( source == GUIEditor_Button[3] ) then 
            BuyWeapon(1500,16,20,"grenade") 
        elseif ( source == GUIEditor_Button[4] ) then 
            BuyWeapon(200,29,500,"mp5") 
  
        end 
    end 
) 
  
  
 addEvent("Open",true) 
 addEvent("Close",true) 
  
  
 addEventHandler("Open",getRootElement(), 
    function () 
        guiSetVisible(GUIEditor_Window[1],true) 
        showCursor(true) 
    end 
) 
  
addEventHandler("Close",getRootElement(), 
    function () 
        guiSetVisible(GUIEditor_Window[1],false) 
        showCursor(false) 
    end 
) 
  
  

السيرفر

addEvent("onBuy",true) 
addEventHandler("onBuy",getRootElement(), 
    function (id,ammo) 
        giveWeapon(source,id,ammo) 
    end 
) 
  
local Marker = createMarker ( 1367.599609375, -1280, 12.300000190735, "cylinder", 1.5, 255, 0, 0, 255 ) 
  
addEventHandler('onMarkerHit', Marker, 
    function ( hitPlayer ) 
        triggerClientEvent(hitPlayer,"Open",hitPlayer) 
    end 
) 
  
addEventHandler("onMarkerLeave",Marker, 
    function (hitPlayer) 
        triggerClientEvent(hitPlayer,"Close",hitPlayer) 
    end 
) 

و لقيت عندك اخطاء راجع الشوب

~~

Link to comment
احد يساعدني شكل مستر طلال مشغول حده

:cry:

هههههههههااي

انا اذا قلت من عيوني ما انساك

سويت لك الشوب لكن ما جربته لاني ما اعرف مكان الماركر

الرابط ارسلته لك في رساله جربه و شوف

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

Good Luck :)

Link to comment
احد يساعدني شكل مستر طلال مشغول حده

:cry:

هههههههههااي

انا اذا قلت من عيوني ما انساك

سويت لك الشوب لكن ما جربته لاني ما اعرف مكان الماركر

الرابط ارسلته لك في رساله جربه و شوف

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

Good Luck :)

مشكوووووووووووور

تسلم مستر طلال مادري كيف اردلك

تسلم

تسلم

تسلم

تسلم

تسلم

:love5::love4::love2::love7::love10:

Link to comment
احد يساعدني شكل مستر طلال مشغول حده

:cry:

هههههههههااي

انا اذا قلت من عيوني ما انساك

سويت لك الشوب لكن ما جربته لاني ما اعرف مكان الماركر

الرابط ارسلته لك في رساله جربه و شوف

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

Good Luck :)

مشكوووووووووووور

تسلم مستر طلال مادري كيف اردلك

تسلم

تسلم

تسلم

تسلم

تسلم

:love5::love4::love2::love7::love10:

عندك اي مشكلة لا تبخل علينا

احنا هنا نساعد الكل

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