Jump to content

طلب مساعدة رح تفيدني وتفيد اصحاب السيرفرات


Recommended Posts

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

كيفكم يا عرب ان شاء الله طيبين

انا عرفت فكرة حلوة رح تفيدني وتفيدكم باللعبة

وهو لوحة تحول الفلوس الوهمية من وهمية الا حقيقية

لكن فشلت في بعض الاكواد

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

سيرفر

    addEvent('money',true) 
    addEventHandler('money',root, 
    function () 
        givePlayerMoney(client,500) -- المشكلة او حسب حلكم 
    end) 

كلنت

GUIEditor = { 
    button = {}, 
    window = {}, 
    label = {} 
} 
addEventHandler("onClientResourceStart", resourceRoot, 
    function() 
local screenW, screenH = guiGetScreenSize() 
        GUIEditor.window[1] = guiCreateWindow((screenW - 271) / 2, (screenH - 453) / 2, 271, 453, "نظام تحويل المال سيرفر مهمات الاجرام", false) 
        guiWindowSetSizable(GUIEditor.window[1], false) 
        guiSetProperty(GUIEditor.window[1], "CaptionColour", "FFF7FDFE") 
        guiSetVisible(GUIEditor.window[1],false) 
  
        GUIEditor.button[1] = guiCreateButton(12, 354, 249, 35, "تحويل", false, GUIEditor.window[1]) 
        guiSetFont(GUIEditor.button[1], "default-bold-small") 
        guiSetProperty(GUIEditor.button[1], "NormalTextColour", "FFF7FDFE") 
        GUIEditor.button[2] = guiCreateButton(14, 397, 247, 35, "خروج", false, GUIEditor.window[1]) 
        guiSetFont(GUIEditor.button[2], "default-bold-small") 
        guiSetProperty(GUIEditor.button[2], "NormalTextColour", "FFF7FDFE") 
        GUIEditor.label[1] = guiCreateLabel(14, 249, 247, 100, "مرحباً بك في السيرفر \nاذا كنت تريد تحويل المال\nمن وهمي الا حقيقي \nمن فضلك اضغط على تحويل\nاذا كنت لا تريد ذلك من فضلك\nاضغط على زر خروج", false, GUIEditor.window[1]) 
        guiSetFont(GUIEditor.label[1], "default-bold-small") 
        guiLabelSetColor(GUIEditor.label[1], 247, 253, 254) 
        guiLabelSetHorizontalAlign(GUIEditor.label[1], "center", false) 
        guiLabelSetVerticalAlign(GUIEditor.label[1], "center") 
  
        IMG = guiCreateStaticImage(24, 24, 225, 225, ":MODS-money/money.png", false, GUIEditor.window[1]) 
    end 
) 
  
bindKey ( "m" , "down" , function() 
        guiSetVisible ( GUIEditor.window[1], not guiGetVisible ( GUIEditor.window[1] ) ) 
        showCursor ( guiGetVisible ( GUIEditor.window[1] ) ) 
 end) 
  
addEventHandler("onClientGUIClick",root, 
function () 
    if source == (GUIEditor.button[1]) then 
     
    local PlayerMoney = getPlayerMoney() 
    if ( PlayerMoney >= 100 ) then 
    takePlayerMoney(PlayerMoney) 
  
    triggerServerEvent('money',localPlayer) 
    outputChatBox('#ff0000*#45A325 تم التحويل', 255, 255, 0,true) 
    else 
    outputChatBox('#ff0000*#45A325 لا يتم تحويل اقل من 100 دولار', 255, 0, 0,true) 
    playSound("money.wav") 
    end 
    end 
---------------------------------------------- 
    if source == (GUIEditor.button[2]) then 
    guiSetVisible(GUIEditor.window[1], false ) 
    showCursor(false) 
    end 
end) 
  

Link to comment

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

مافهمت شيء من الفكرة بس تفضل :

  
GUIEditor = { 
    button = {}, 
    window = {}, 
    label = {} 
} 
addEventHandler("onClientResourceStart", resourceRoot, 
    function() 
local screenW, screenH = guiGetScreenSize() 
        GUIEditor.window[1] = guiCreateWindow((screenW - 271) / 2, (screenH - 453) / 2, 271, 453, "نظام تحويل المال سيرفر مهمات الاجرام", false) 
        guiWindowSetSizable(GUIEditor.window[1], false) 
        guiSetProperty(GUIEditor.window[1], "CaptionColour", "FFF7FDFE") 
        guiSetVisible(GUIEditor.window[1],false) 
  
        GUIEditor.button[1] = guiCreateButton(12, 354, 249, 35, "تحويل", false, GUIEditor.window[1]) 
        guiSetFont(GUIEditor.button[1], "default-bold-small") 
        guiSetProperty(GUIEditor.button[1], "NormalTextColour", "FFF7FDFE") 
        GUIEditor.button[2] = guiCreateButton(14, 397, 247, 35, "خروج", false, GUIEditor.window[1]) 
        guiSetFont(GUIEditor.button[2], "default-bold-small") 
        guiSetProperty(GUIEditor.button[2], "NormalTextColour", "FFF7FDFE") 
        GUIEditor.label[1] = guiCreateLabel(14, 249, 247, 100, "مرحباً بك في السيرفر \nاذا كنت تريد تحويل المال\nمن وهمي الا حقيقي \nمن فضلك اضغط على تحويل\nاذا كنت لا تريد ذلك من فضلك\nاضغط على زر خروج", false, GUIEditor.window[1]) 
        guiSetFont(GUIEditor.label[1], "default-bold-small") 
        guiLabelSetColor(GUIEditor.label[1], 247, 253, 254) 
        guiLabelSetHorizontalAlign(GUIEditor.label[1], "center", false) 
        guiLabelSetVerticalAlign(GUIEditor.label[1], "center") 
  
        IMG = guiCreateStaticImage(24, 24, 225, 225, ":MODS-money/money.png", false, GUIEditor.window[1]) 
    end 
) 
  
bindKey ( "m" , "down" , function() 
        guiSetVisible ( GUIEditor.window[1], not guiGetVisible ( GUIEditor.window[1] ) ) 
        showCursor ( guiGetVisible ( GUIEditor.window[1] ) ) 
 end) 
  
addEventHandler("onClientGUIClick",root, 
function () 
    if source == (GUIEditor.button[1]) then 
    
    local PlayerMoney = getPlayerMoney() 
    if ( PlayerMoney >= 100 ) then 
    takePlayerMoney(PlayerMoney) 
  
    triggerServerEvent('money',localPlayer) 
    outputChatBox('#ff0000*#45A325 تم التحويل', 255, 255, 0,true) 
    else 
    outputChatBox('#ff0000*#45A325 لا يتم تحويل اقل من 100 دولار', 255, 0, 0,true) 
    playSound("money.wav") 
     elseif source == (GUIEditor.button[2]) then 
    guiSetVisible(GUIEditor.window[1], false ) 
    showCursor(false) 
    end 
    end 
    end) 
  
  

  
--Server 
   addEvent('money',true) 
    addEventHandler('money',root, 
    function () 
        givePlayerMoney(source,500) -- المشكلة او حسب حلكم 
    end) 
  

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

مافهمت شيء من الفكرة بس تفضل :

  
GUIEditor = { 
    button = {}, 
    window = {}, 
    label = {} 
} 
addEventHandler("onClientResourceStart", resourceRoot, 
    function() 
local screenW, screenH = guiGetScreenSize() 
        GUIEditor.window[1] = guiCreateWindow((screenW - 271) / 2, (screenH - 453) / 2, 271, 453, "نظام تحويل المال سيرفر مهمات الاجرام", false) 
        guiWindowSetSizable(GUIEditor.window[1], false) 
        guiSetProperty(GUIEditor.window[1], "CaptionColour", "FFF7FDFE") 
        guiSetVisible(GUIEditor.window[1],false) 
  
        GUIEditor.button[1] = guiCreateButton(12, 354, 249, 35, "تحويل", false, GUIEditor.window[1]) 
        guiSetFont(GUIEditor.button[1], "default-bold-small") 
        guiSetProperty(GUIEditor.button[1], "NormalTextColour", "FFF7FDFE") 
        GUIEditor.button[2] = guiCreateButton(14, 397, 247, 35, "خروج", false, GUIEditor.window[1]) 
        guiSetFont(GUIEditor.button[2], "default-bold-small") 
        guiSetProperty(GUIEditor.button[2], "NormalTextColour", "FFF7FDFE") 
        GUIEditor.label[1] = guiCreateLabel(14, 249, 247, 100, "مرحباً بك في السيرفر \nاذا كنت تريد تحويل المال\nمن وهمي الا حقيقي \nمن فضلك اضغط على تحويل\nاذا كنت لا تريد ذلك من فضلك\nاضغط على زر خروج", false, GUIEditor.window[1]) 
        guiSetFont(GUIEditor.label[1], "default-bold-small") 
        guiLabelSetColor(GUIEditor.label[1], 247, 253, 254) 
        guiLabelSetHorizontalAlign(GUIEditor.label[1], "center", false) 
        guiLabelSetVerticalAlign(GUIEditor.label[1], "center") 
  
        IMG = guiCreateStaticImage(24, 24, 225, 225, ":MODS-money/money.png", false, GUIEditor.window[1]) 
    end 
) 
  
bindKey ( "m" , "down" , function() 
        guiSetVisible ( GUIEditor.window[1], not guiGetVisible ( GUIEditor.window[1] ) ) 
        showCursor ( guiGetVisible ( GUIEditor.window[1] ) ) 
 end) 
  
addEventHandler("onClientGUIClick",root, 
function () 
    if source == (GUIEditor.button[1]) then 
    
    local PlayerMoney = getPlayerMoney() 
    if ( PlayerMoney >= 100 ) then 
    takePlayerMoney(PlayerMoney) 
  
    triggerServerEvent('money',localPlayer) 
    outputChatBox('#ff0000*#45A325 تم التحويل', 255, 255, 0,true) 
    else 
    outputChatBox('#ff0000*#45A325 لا يتم تحويل اقل من 100 دولار', 255, 0, 0,true) 
    playSound("money.wav") 
     elseif source == (GUIEditor.button[2]) then 
    guiSetVisible(GUIEditor.window[1], false ) 
    showCursor(false) 
    end 
    end 
    end) 
  
  

  
--Server 
   addEvent('money',true) 
    addEventHandler('money',root, 
    function () 
        givePlayerMoney(source,500) -- المشكلة او حسب حلكم 
    end) 
  

شوف اخي في اشخاص كثيرين يشتكون من مشكلة الفلوس الوهمية

انا ابي اخلي ذا السكربت ياخذ جميع الفلوس ويعطيك متلهم لكن حقيقي مب وهمي

اتمنى فهمتني + كود سيرفر لازم يتغير ومدري عن اكواده

Link to comment
وش هي الفلوس الوهميةة ؟
givePlayerMoney --- من جآنب كيلنت , مجرد رقم ماتسوي شيء 

---

GUIEditor = { 
    button = {}, 
    window = {}, 
    label = {} 
} 
addEventHandler("onClientResourceStart", resourceRoot, 
    function() 
local screenW, screenH = guiGetScreenSize() 
        GUIEditor.window[1] = guiCreateWindow((screenW - 271) / 2, (screenH - 453) / 2, 271, 453, "نظام تحويل المال سيرفر مهمات الاجرام", false) 
        guiWindowSetSizable(GUIEditor.window[1], false) 
        guiSetProperty(GUIEditor.window[1], "CaptionColour", "FFF7FDFE") 
        guiSetVisible(GUIEditor.window[1],false) 
  
        GUIEditor.button[1] = guiCreateButton(12, 354, 249, 35, "تحويل", false, GUIEditor.window[1]) 
        guiSetFont(GUIEditor.button[1], "default-bold-small") 
        guiSetProperty(GUIEditor.button[1], "NormalTextColour", "FFF7FDFE") 
        GUIEditor.button[2] = guiCreateButton(14, 397, 247, 35, "خروج", false, GUIEditor.window[1]) 
        guiSetFont(GUIEditor.button[2], "default-bold-small") 
        guiSetProperty(GUIEditor.button[2], "NormalTextColour", "FFF7FDFE") 
        GUIEditor.label[1] = guiCreateLabel(14, 249, 247, 100, "مرحباً بك في السيرفر \nاذا كنت تريد تحويل المال\nمن وهمي الا حقيقي \nمن فضلك اضغط على تحويل\nاذا كنت لا تريد ذلك من فضلك\nاضغط على زر خروج", false, GUIEditor.window[1]) 
        guiSetFont(GUIEditor.label[1], "default-bold-small") 
        guiLabelSetColor(GUIEditor.label[1], 247, 253, 254) 
        guiLabelSetHorizontalAlign(GUIEditor.label[1], "center", false) 
        guiLabelSetVerticalAlign(GUIEditor.label[1], "center") 
  
        IMG = guiCreateStaticImage(24, 24, 225, 225, ":MODS-money/money.png", false, GUIEditor.window[1]) 
    end 
) 
  
bindKey ( "m" , "down" , function() 
        guiSetVisible ( GUIEditor.window[1], not guiGetVisible ( GUIEditor.window[1] ) ) 
        showCursor ( guiGetVisible ( GUIEditor.window[1] ) ) 
 end) 
  
addEventHandler("onClientGUIClick",root, 
function () 
    if source == (GUIEditor.button[1]) then 
    
    local PlayerMoney = getPlayerMoney() 
    if ( PlayerMoney >= 100 ) then 
    takePlayerMoney(PlayerMoney) 
  
    triggerServerEvent('money',localPlayer,PlayerMoney) --- يرسل الفلوس مع الترايقر عشان يعطيه نفس القيمة 
    outputChatBox('#ff0000*#45A325 تم التحويل', 255, 255, 0,true) 
    else 
    outputChatBox('#ff0000*#45A325 لا يتم تحويل اقل من 100 دولار', 255, 0, 0,true) 
    playSound("money.wav") 
     elseif source == (GUIEditor.button[2]) then 
    guiSetVisible(GUIEditor.window[1], false ) 
    showCursor(false) 
    end 
    end 
    end) 
  
  

--Server 
   addEvent('money',true) 
    addEventHandler('money',root, 
    function (PlayerMoney) 
        givePlayerMoney(source,PlayerMoney) -- يعطيه فلوس حقيقية عوضاَ عن الوهمية 
    end) 
  

Link to comment

local screenW, screenH = guiGetScreenSize() 
Panel = guiCreateWindow((screenW - 271) / 2, (screenH - 453) / 2, 271, 453, "نظام تحويل المال سيرفر مهمات الاجرام", false) 
guiWindowSetSizable(Panel, false) 
guiSetProperty(Panel, "CaptionColour", "FFF7FDFE") 
guiSetVisible(Panel,false) 
Button1 = guiCreateButton(12, 354, 249, 35, "تحويل", false, Panel) 
guiSetFont(Button1, "default-bold-small") 
guiSetProperty(Button1, "NormalTextColour", "FFF7FDFE") 
Button2 = guiCreateButton(14, 397, 247, 35, "خروج", false, Panel) 
guiSetFont(Button2, "default-bold-small") 
guiSetProperty(Button2, "NormalTextColour", "FFF7FDFE") 
Label = guiCreateLabel(14, 249, 247, 100, "مرحباً بك في السيرفر \nاذا كنت تريد تحويل المال\nمن وهمي الا حقيقي \nمن فضلك اضغط على تحويل\nاذا كنت لا تريد ذلك من فضلك\nاضغط على زر خروج", false, Panel) 
guiSetFont(Label, "default-bold-small") 
guiLabelSetColor(Label, 247, 253, 254) 
guiLabelSetHorizontalAlign(Label, "center", false) 
guiLabelSetVerticalAlign(Label, "center") 
IMG = guiCreateStaticImage(24, 24, 225, 225, ":MODS-money/money.png", false, Panel) 
  
bindKey ( "m" , "down" ,  
function( ) 
    guiSetVisible ( Panel, not guiGetVisible ( Panel ) ) 
            showCursor ( guiGetVisible ( Panel ) ) 
end ) 
  
addEventHandler("onClientGUIClick",root, 
function ( ) 
if ( source == Button1 ) then 
if ( PlayerMoney >= 100 ) then 
    local PlayerMoney = getPlayerMoney() 
        takePlayerMoney(PlayerMoney) 
            triggerServerEvent('money',localPlayer,PlayerMoney) --- يرسل الفلوس مع الترايقر عشان يعطيه نفس القيمة 
                outputChatBox('#ff0000*#45A325 تم التحويل', 255, 255, 0,true) 
else 
    outputChatBox('#ff0000*#45A325 لا يتم تحويل اقل من 100 دولار', 255, 0, 0,true) 
        playSound("money.wav") 
         
elseif ( source == Button2 ) then 
  
    guiSetVisible(Panel, false ) 
            showCursor( false) 
            end 
    end 
end ) 
  

--Server 
addEvent('money',true) 
addEventHandler('money',root, 
function (PlayerMoney) 
    givePlayerMoney(source,PlayerMoney) -- يعطيه فلوس حقيقية عوضاَ عن الوهمية 
end ) 

مجرد ترتيب + تقليل عدد الاسطر

Link to comment

هو يقصد فلوس سيرفرات حرب العصابات

وهي داتا اسمها Money

تفضل

local screenW, screenH = guiGetScreenSize() 
Panel = guiCreateWindow((screenW - 271) / 2, (screenH - 453) / 2, 271, 453, "نظام تحويل المال سيرفر مهمات الاجرام", false) 
guiWindowSetSizable(Panel, false) 
guiSetProperty(Panel, "CaptionColour", "FFF7FDFE") 
guiSetVisible(Panel,false) 
Button1 = guiCreateButton(12, 354, 249, 35, "تحويل", false, Panel) 
guiSetFont(Button1, "default-bold-small") 
guiSetProperty(Button1, "NormalTextColour", "FFF7FDFE") 
Button2 = guiCreateButton(14, 397, 247, 35, "خروج", false, Panel) 
guiSetFont(Button2, "default-bold-small") 
guiSetProperty(Button2, "NormalTextColour", "FFF7FDFE") 
Label = guiCreateLabel(14, 249, 247, 100, "مرحباً بك في السيرفر \nاذا كنت تريد تحويل المال\nمن وهمي الا حقيقي \nمن فضلك اضغط على تحويل\nاذا كنت لا تريد ذلك من فضلك\nاضغط على زر خروج", false, Panel) 
guiSetFont(Label, "default-bold-small") 
guiLabelSetColor(Label, 247, 253, 254) 
guiLabelSetHorizontalAlign(Label, "center", false) 
guiLabelSetVerticalAlign(Label, "center") 
IMG = guiCreateStaticImage(24, 24, 225, 225, ":MODS-money/money.png", false, Panel) 
  
bindKey ( "m" , "down" , 
function( ) 
    guiSetVisible (Panel, not guiGetVisible (Panel) ) 
            showCursor (guiGetVisible(Panel)) 
end ) 
  
  
addEventHandler("onClientGUIClick",root,function() 
    if (source == Button1) then 
        triggerServerEvent("money",localPlayer) 
     
    elseif (source == Button2) then 
        guiSetVisible(Panel, false) 
        showCursor(Panel,false) 
    end 
end) 
  

  
addEvent("money",true) 
addEventHandler("money",root,function() 
    local m = getPlayerMoney(source) 
    if m ~= 0 then 
        takePlayerMoney(m) 
            setElementData(source,"Money",getElementData(source,"Money") + m) 
    end 
end) 

انا ما جربته

اسف ان في خطأ

Link to comment
local screenW, screenH = guiGetScreenSize() 
Panel = guiCreateWindow((screenW - 271) / 2, (screenH - 453) / 2, 271, 453, "نظام تحويل المال سيرفر مهمات الاجرام", false) 
guiWindowSetSizable(Panel, false) 
guiSetProperty(Panel, "CaptionColour", "FFF7FDFE") 
guiSetVisible(Panel,false) 
Button1 = guiCreateButton(12, 354, 249, 35, "تحويل", false, Panel) 
guiSetFont(Button1, "default-bold-small") 
guiSetProperty(Button1, "NormalTextColour", "FFF7FDFE") 
Button2 = guiCreateButton(14, 397, 247, 35, "خروج", false, Panel) 
guiSetFont(Button2, "default-bold-small") 
guiSetProperty(Button2, "NormalTextColour", "FFF7FDFE") 
Label = guiCreateLabel(14, 249, 247, 100, "مرحباً بك في السيرفر \nاذا كنت تريد تحويل المال\nمن وهمي الا حقيقي \nمن فضلك اضغط على تحويل\nاذا كنت لا تريد ذلك من فضلك\nاضغط على زر خروج", false, Panel) 
guiSetFont(Label, "default-bold-small") 
guiLabelSetColor(Label, 247, 253, 254) 
guiLabelSetHorizontalAlign(Label, "center", false) 
guiLabelSetVerticalAlign(Label, "center") 
IMG = guiCreateStaticImage(24, 24, 225, 225, ":MODS-money/money.png", false, Panel) 
  
bindKey ( "m" , "down" , 
function( ) 
    guiSetVisible (Panel, not guiGetVisible (Panel) ) 
            showCursor (guiGetVisible(Panel)) 
end ) 
  
  
addEventHandler("onClientGUIClick",root,function() 
    if (source == Button1) then 
        triggerServerEvent("money",localPlayer) 
    
    elseif (source == Button2) then 
        guiSetVisible(Panel,false) 
        showCursor(false) 
    end 
end) 

Link to comment
local screenW, screenH = guiGetScreenSize() 
Panel = guiCreateWindow((screenW - 271) / 2, (screenH - 453) / 2, 271, 453, "نظام تحويل المال سيرفر مهمات الاجرام", false) 
guiWindowSetSizable(Panel, false) 
guiSetProperty(Panel, "CaptionColour", "FFF7FDFE") 
guiSetVisible(Panel,false) 
Button1 = guiCreateButton(12, 354, 249, 35, "تحويل", false, Panel) 
guiSetFont(Button1, "default-bold-small") 
guiSetProperty(Button1, "NormalTextColour", "FFF7FDFE") 
Button2 = guiCreateButton(14, 397, 247, 35, "خروج", false, Panel) 
guiSetFont(Button2, "default-bold-small") 
guiSetProperty(Button2, "NormalTextColour", "FFF7FDFE") 
Label = guiCreateLabel(14, 249, 247, 100, "مرحباً بك في السيرفر \nاذا كنت تريد تحويل المال\nمن وهمي الا حقيقي \nمن فضلك اضغط على تحويل\nاذا كنت لا تريد ذلك من فضلك\nاضغط على زر خروج", false, Panel) 
guiSetFont(Label, "default-bold-small") 
guiLabelSetColor(Label, 247, 253, 254) 
guiLabelSetHorizontalAlign(Label, "center", false) 
guiLabelSetVerticalAlign(Label, "center") 
IMG = guiCreateStaticImage(24, 24, 225, 225, ":MODS-money/money.png", false, Panel) 
  
bindKey ( "m" , "down" , 
function( ) 
    guiSetVisible (Panel, not guiGetVisible (Panel) ) 
            showCursor (guiGetVisible(Panel)) 
end ) 
  
  
addEventHandler("onClientGUIClick",root,function() 
    if (source == Button1) then 
        triggerServerEvent("money",localPlayer) 
    
    elseif (source == Button2) then 
        guiSetVisible(Panel,false) 
        showCursor(false) 
    end 
end) 

ما شوفك غيرت شيئ بالكود حقي

Link to comment
local screenW, screenH = guiGetScreenSize() 
Panel = guiCreateWindow((screenW - 271) / 2, (screenH - 453) / 2, 271, 453, "نظام تحويل المال سيرفر مهمات الاجرام", false) 
guiWindowSetSizable(Panel, false) 
guiSetProperty(Panel, "CaptionColour", "FFF7FDFE") 
guiSetVisible(Panel,false) 
Button1 = guiCreateButton(12, 354, 249, 35, "تحويل", false, Panel) 
guiSetFont(Button1, "default-bold-small") 
guiSetProperty(Button1, "NormalTextColour", "FFF7FDFE") 
Button2 = guiCreateButton(14, 397, 247, 35, "خروج", false, Panel) 
guiSetFont(Button2, "default-bold-small") 
guiSetProperty(Button2, "NormalTextColour", "FFF7FDFE") 
Label = guiCreateLabel(14, 249, 247, 100, "مرحباً بك في السيرفر \nاذا كنت تريد تحويل المال\nمن وهمي الا حقيقي \nمن فضلك اضغط على تحويل\nاذا كنت لا تريد ذلك من فضلك\nاضغط على زر خروج", false, Panel) 
guiSetFont(Label, "default-bold-small") 
guiLabelSetColor(Label, 247, 253, 254) 
guiLabelSetHorizontalAlign(Label, "center", false) 
guiLabelSetVerticalAlign(Label, "center") 
IMG = guiCreateStaticImage(24, 24, 225, 225, ":MODS-money/money.png", false, Panel) 
  
bindKey ( "m" , "down" , 
function( ) 
    guiSetVisible (Panel, not guiGetVisible (Panel) ) 
            showCursor (guiGetVisible(Panel)) 
end ) 
  
  
addEventHandler("onClientGUIClick",root,function() 
    if (source == Button1) then 
        triggerServerEvent("money",localPlayer) 
    
    elseif (source == Button2) then 
        guiSetVisible(Panel,false) 
        showCursor(false) 
    end 
end) 

ما شوفك غيرت شيئ بالكود حقي

جابر مع الاسف انت غيرت فقط اسماء الازرار لكن ما غيرت شي بالسيرفر لأنه به كل الحكاية

Edited by Guest
Link to comment

شباب اتمنى تفهموني انا ابي اضغط علي زر ياخذ كل فلوس اللاعب

اذا كانت وهمية او مب وهمية ابي لما تضغط على الزر تنسحب كل فلوسه

وبالترايقر للملف سيرفر ابيه يرجع له نفس الفلوس اللي كانت معه بدون زيادة او نقص

ذا اللي اقصده اتمنى تفهموني - ذا رح يفيد اشخاص كثيرين منهم انا

ملاحظة فلوس لوحة الادمنية وهمية

Link to comment
  
local screenW, screenH = guiGetScreenSize() 
Panel = guiCreateWindow((screenW - 271) / 2, (screenH - 453) / 2, 271, 453, "نظام تحويل المال سيرفر مهمات الاجرام", false) 
guiWindowSetSizable(Panel, false) 
guiSetProperty(Panel, "CaptionColour", "FFF7FDFE") 
guiSetVisible(Panel,false) 
Button1 = guiCreateButton(12, 354, 249, 35, "تحويل", false, Panel) 
guiSetFont(Button1, "default-bold-small") 
guiSetProperty(Button1, "NormalTextColour", "FFF7FDFE") 
Button2 = guiCreateButton(14, 397, 247, 35, "خروج", false, Panel) 
guiSetFont(Button2, "default-bold-small") 
guiSetProperty(Button2, "NormalTextColour", "FFF7FDFE") 
Label = guiCreateLabel(14, 249, 247, 100, "مرحباً بك في السيرفر \nاذا كنت تريد تحويل المال\nمن وهمي الا حقيقي \nمن فضلك اضغط على تحويل\nاذا كنت لا تريد ذلك من فضلك\nاضغط على زر خروج", false, Panel) 
guiSetFont(Label, "default-bold-small") 
guiLabelSetColor(Label, 247, 253, 254) 
guiLabelSetHorizontalAlign(Label, "center", false) 
guiLabelSetVerticalAlign(Label, "center") 
IMG = guiCreateStaticImage(24, 24, 225, 225, ":MODS-money/money.png", false, Panel) 
  
bindKey ( "m" , "down" , 
function( ) 
    guiSetVisible (Panel, not guiGetVisible (Panel) ) 
            showCursor (guiGetVisible(Panel)) 
end ) 
  
  
addEventHandler("onClientGUIClick",root,function() 
    if (source == Button1) then 
        triggerServerEvent("money",localPlayer) 
    
    elseif (source == Button2) then 
        guiSetVisible(Panel,false) 
        showCursor(false) 
    end 
end) 
  

  
addEvent("money",true) 
addEventHandler("money",root, 
function () 
local PlrMoney = getPlayerMoney( source ) 
if PlrMoney == 0 then return end 
givePlayerMoney( source , PlrMoney ) 
takePlayerMoney( source , PlrMoney / 2 ) 
end 
) 
  

Link to comment

كلينت

[lua]local screenW, screenH = guiGetScreenSize() 
Panel = guiCreateWindow((screenW - 271) / 2, (screenH - 453) / 2, 271, 453, "نظام تحويل المال سيرفر مهمات الاجرام", false) 
guiWindowSetSizable(Panel, false) 
guiSetProperty(Panel, "CaptionColour", "FFF7FDFE") 
guiSetVisible(Panel,false) 
Button1 = guiCreateButton(12, 354, 249, 35, "تحويل", false, Panel) 
guiSetFont(Button1, "default-bold-small") 
guiSetProperty(Button1, "NormalTextColour", "FFF7FDFE") 
Button2 = guiCreateButton(14, 397, 247, 35, "خروج", false, Panel) 
guiSetFont(Button2, "default-bold-small") 
guiSetProperty(Button2, "NormalTextColour", "FFF7FDFE") 
Label = guiCreateLabel(14, 249, 247, 100, "مرحباً بك في السيرفر \nاذا كنت تريد تحويل المال\nمن وهمي الا حقيقي \nمن فضلك اضغط على تحويل\nاذا كنت لا تريد ذلك من فضلك\nاضغط على زر خروج", false, Panel) 
guiSetFont(Label, "default-bold-small") 
guiLabelSetColor(Label, 247, 253, 254) 
guiLabelSetHorizontalAlign(Label, "center", false) 
guiLabelSetVerticalAlign(Label, "center") 
IMG = guiCreateStaticImage(24, 24, 225, 225, ":MODS-money/money.png", false, Panel) 
  
bindKey ( "m" , "down" , 
function( ) 
    guiSetVisible (Panel, not guiGetVisible (Panel) ) 
            showCursor (guiGetVisible(Panel)) 
end ) 
  
  
addEventHandler("onClientGUIClick",root,function() 
    if (source == Button1) then 
        triggerServerEvent("money",localPlayer) 
    
    elseif (source == Button2) then 
        guiSetVisible(Panel,false) 
        showCursor(false) 
    end 
end) 

[/lua]

سيرفر

addEvent("money",true) 
addEventHandler("money",root, 
function () 
local PlrMoney = getPlayerMoney( source ) 
if PlrMoney == 0 then return end 
takePlayerMoney( source , PlrMoney +100 ) 
givePlayerMoney( source , PlrMoney ) 
outputChatBox ( "$100 تم التحويل مقابل", player, 0, 255, 0, true ) 
end 
) 

Link to comment

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

شكراً لكم كلكم + انا استفدت منكم و اخذت السكربت وسويت له شي جديد

يعني تحول الفلوس مقابل 1000 دولار - شي بسيط

المهم شكراً على المساعدة

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