Jump to content

طلب مساعدة عاجلة


Recommended Posts

بسم الله الرحمن الرحيم

outputChatBox("#00ff00Send  Money  by  #ff0000tete  #FFFF00press f9 to open the panel",255,255,255,true) 
outputChatBox("#00ff00 اضغت اف9 لآرسال الفلوس",255,255,255,true) 
  
GUIEditor_Window = {} 
GUIEditor_Label = {} 
GUIEditor_Edit = {} 
GUIEditor_Grid = {} 
GUIEditor_Image = {} 
  
GUIEditor_Window[1] = guiCreateWindow(298,259,646,337,"SendMoney..By tete",false) 
guiSetAlpha(GUIEditor_Window[1],1) 
guiWindowSetSizable(GUIEditor_Window[1],false) 
guiSetVisible(GUIEditor_Window[1], false) 
GUIEditor_Image[1] = guiCreateStaticImage(50,-132,5,5,"images/500.PNG",false,GUIEditor_Window[1]) 
GUIEditor_Grid[1] = guiCreateGridList(9,20,209,308,false,GUIEditor_Window[1]) 
guiGridListSetSelectionMode(GUIEditor_Grid[1],2) 
GUIEditor_Label[1] = guiCreateLabel(357,204,114,16,"الحد الأدنى 10 ريال",false,GUIEditor_Window[1]) 
GUIEditor_Label[2] = guiCreateLabel(462,287,165,44,"tete",false,GUIEditor_Window[1]) 
guiLabelSetColor(GUIEditor_Label[2],0,255,0) 
guiSetFont(GUIEditor_Label[2],"sa-header") 
GUIEditor_Label[3] = guiCreateLabel(532,276,113,31,"لعيون سيرفر",false,GUIEditor_Window[1]) 
guiLabelSetColor(GUIEditor_Label[3],255,0,0) 
GUIEditor_Edit[1] = guiCreateEdit(302,164,235,37,"",false,GUIEditor_Window[1]) 
GUIEditor_Label[4] = guiCreateLabel(330,125,136,21,"",false,GUIEditor_Window[1]) 
guiLabelSetHorizontalAlign(GUIEditor_Label[4],"right",false) 
GUIEditor_Label[5] = guiCreateLabel(468,126,97,25,"المرسل اليه  :",false,GUIEditor_Window[1]) 
GUIEditor_Image[2] = guiCreateStaticImage(246,256,121,47,"images/500.PNG",false,GUIEditor_Window[1]) 
GUIEditor_Image[3] = guiCreateStaticImage(443,73,153,39,"images/500.PNG",false,GUIEditor_Window[1]) 
  
    function clientsideResourceStart () 
            local playerList = GUIEditor_Grid[1] 
            local column =  guiGridListAddColumn(GUIEditor_Grid[1],"الاعبين",0.85) 
            if ( column ) then  
                    for id, playeritem in ipairs(getElementsByType("player")) do 
                            local row = guiGridListAddRow ( playerList ) 
                            guiGridListSetItemText ( playerList, row, column, getPlayerName ( playeritem ),false, false ) 
                     
                    end 
            end 
    end 
            addEventHandler ( "onClientResourceStart", getRootElement(), clientsideResourceStart ) 
  
  
function selectedplayer ( clickedElement ) 
if ( clickedElement ) then 
local elementType = getElementType ( clickedElement ) 
local bunci = GUIEditor_Label[4] 
local playerList = GUIEditor_Grid[1] 
  
local fow = guiGridListGetSelectedItem ( playerList ) 
guiGridListGetItemText ( playerList, fow, 35) 
guiSetText ( bunci, elementType ) 
     end 
end 
addEventHandler ( "onClientGUIClick", getRootElement(), selectedplayer ) 
  
bindKey('f7','down',function() 
    guiSetVisible(GUIEditor_Window[1],not(guiGetVisible(GUIEditor_Window[1]))) 
    showCursor(guiGetVisible(GUIEditor_Window[1])) 
end) 
  

هنا ابي اسم الاعب يطلع بال

GUIEditor_Label[5] = guiCreateLabel(468,126,97,25,"المرسل اليه :",false,GUIEditor_Window[1])

يعني مثلاً

انا اخترت شخص في الجريد ليست

يظهر اسمه في

المرسل اليه

مثال

المرسل اليه : ahmed

بالله الي ما يعرف يجربه عنده

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

Link to comment

سو زي كدا

function onClick () 
  
selectedRow, selectedCol = guiGridListGetSelectedItem( GUIEditor_Grid[1]) 
hisName= guiGridListGetItemText( GUIEditor_Grid[1], selectedRow, selectedCol ) 
  
guiSetText ( GUIEditor_Label[5], tostring(hisName)) 
end 
  
    addEventHandler( "onClientGUIClick", GUIEditor_Grid[1], onClick) 

Edited by Guest
Link to comment
سو زي كدا
function onClick () 
  
selectedRow, selectedCol = guiGridListGetSelectedItem( GUIEditor_Grid[1]) 
hisName= guiGridListGetItemText( GUIEditor_Grid[1], selectedRow, selectedCol ) 
  
guiSetText ( GUIEditor_Label[5], tostring(hisName)) 
end 
  
    addEventHandler( "onClientGUIClick", playerGridList, onClick) 

وش هاذي ؟

playerGridList

Link to comment

هدا متعلق ب server-side

بس يمكنك تسويه

amount = guiCreateEdit                            هادي حق الفلوس لي تبي ترسل 
  
function onClick () 
if ( source =="sendMoney" ) then               ان كان الاختيار زر ارسال الفلوس 
Value = guiGetText( amount  ) 
    triggerServerEvent ("sendMoney", getLocalPlayer(),  amount) 
  
  
  
  
end 
end 
  
addEventHandler ("onClientGUIClick", getRootElement(),onClick)   
  
  
in server: 
function (amount) 
if (amount=>tonumber("200") then   ان كانت الفلوس اكبر من 
  
  
و تكمل 

Link to comment
هدا متعلق ب server-side

بس يمكنك تسويه

amount = guiCreateEdit                            هادي حق الفلوس لي تبي ترسل 
  
function onClick () 
if ( source =="sendMoney" ) then               ان كان الاختيار زر ارسال الفلوس 
Value = guiGetText( amount  ) 
    triggerServerEvent ("sendMoney", getLocalPlayer(),  amount) 
  
  
  
  
end 
end 
  
addEventHandler ("onClientGUIClick", getRootElement(),onClick)   
  
  
in server: 
function (amount) 
if (amount=>tonumber("200") then   ان كانت الفلوس اكبر من 
  
  
و تكمل 

WORNG !

Link to comment
هدا متعلق ب server-side

بس يمكنك تسويه

amount = guiCreateEdit                            هادي حق الفلوس لي تبي ترسل 
  
function onClick () 
if ( source =="sendMoney" ) then               ان كان الاختيار زر ارسال الفلوس 
Value = guiGetText( amount  ) 
    triggerServerEvent ("sendMoney", getLocalPlayer(),  amount) 
  
  
  
  
end 
end 
  
addEventHandler ("onClientGUIClick", getRootElement(),onClick)   
  
  
in server: 
function (amount) 
if (amount=>tonumber("200") then   ان كانت الفلوس اكبر من 
  
  
و تكمل 

WORNG !

Ok what is the right ! ?

Link to comment
انت عدل على حساب كودك انا ما راح ابقى كل شيء اعطيك جاهز
function onClick () 
if ( source =="sendMoney" ) then               ان كان الاختيار زر ارسال الفلوس 
Value = guiGetText( amount  ) 
    triggerServerEvent ("sendMoney", getLocalPlayer(),  amount) 

هههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههه

function (amount) 
if (amount=>tonumber("200") then   ان كانت الفلوس اكبر من 

هههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههه

Link to comment
انت عدل على حساب كودك انا ما راح ابقى كل شيء اعطيك جاهز
function onClick () 
if ( source =="sendMoney" ) then               ان كان الاختيار زر ارسال الفلوس 
Value = guiGetText( amount  ) 
    triggerServerEvent ("sendMoney", getLocalPlayer(),  amount) 

هههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههه

function (amount) 
if (amount=>tonumber("200") then   ان كانت الفلوس اكبر من 

هههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههه

تااااااااابل شوي شوي لا تموت خخخخخخخخخخخخخخخخخ

يا وش اسمك انت يا scripter_new

فضحتنا بين الشباب خخخخخخخخخ

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

function onClick () 
    if ( source == sendMoney )then 
        triggerServerEvent ("sendMoney", getLocalPlayer(), guiGetText( amount ) ) 
    end 
end 
addEventHandler ("onClientGUIClick", getRootElement(),onClick) 

طبعا مالي خلق اشرح اخطائك فيه لاني بطول خخخخخخ

بس الكود لازم تسوي زر الارسال وتحطه حق متغير

sendMoney

القسم الثاني

function (amount) 
if (amount=>tonumber("200") then    

ياخي ليه حاط

tonumber("200")

؟

انت تبي تحول الرقم من نص الى رقم خخخخخخخخخخخخخخخخخخخخخخخ

حطيته رقم من البداية احسن لك

بعدين amount يعتبر نص لكذا لازم تحوله الى رقم

هذا هو التعديل

function (amount) 
if ( tonumber(amount) => 200 ) then    

Link to comment
موت بس انا اكلم داك من دخلك انت يا ش....

+

tonumber

وش فيها؟

هههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههه

هههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههه

هههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههه

هههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههه

هههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههه

هههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههه

هههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههه

هههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههه

هههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههه

هههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههه

Link to comment

تبولتي لاتضحكين خخخخ

ClientSide --

addEventHandler('onClientGUIClick' ,root, --  الايفينت هنا 
function() -- الوظيفة 
if ( source == 'The Stupid Weapon Argument here' ) then -- اسم الزر هنا 
triggerServerEvent('onStupid', localPlayer, guiGetText( amount ) ) --- عندما يرسل القيم الى السيرفر احضر المقدار 
end-- انهاء 
end)--- لاغلاق القوس في الاعلى 

Server-Side

addEvent('onStupid', true)--- نحط الايفينت عشان نفعله  
addEventHandler('onStupid', root,---- نحط الايفينت عشان نفعله  
function()---- الوظيفة 
----Code Here  
end)--- اغلاق القوس في الاول 
  
----طبعا انا استخدمت الحركه ذي من اختي تبوله ههههههههههه 

Link to comment
تبولتي لاتضحكين خخخخ

ClientSide --

addEventHandler('onClientGUIClick' ,root, --  الايفينت هنا 
function() -- الوظيفة 
if ( source == 'The Stupid Weapon Argument here' ) then -- اسم الزر هنا 
triggerServerEvent('onStupid', localPlayer, guiGetText( amount ) ) --- عندما يرسل القيم الى السيرفر احضر المقدار 
end-- انهاء 
end)--- لاغلاق القوس في الاعلى 

Server-Side

addEvent('onStupid', true)--- نحط الايفينت عشان نفعله  
addEventHandler('onStupid', root,---- نحط الايفينت عشان نفعله  
function()---- الوظيفة 
----Code Here  
end)--- اغلاق القوس في الاول 
  
----طبعا انا استخدمت الحركه ذي من اختي تبوله ههههههههههه 

عدلت على

stuped

هههههههههههههههههه

الحين صارت

stupid : D !!!

Link to comment
تبولتي لاتضحكين خخخخ

ClientSide --

addEventHandler('onClientGUIClick' ,root, --  الايفينت هنا 
function() -- الوظيفة 
if ( source == 'The Stupid Weapon Argument here' ) then -- اسم الزر هنا 
triggerServerEvent('onStupid', localPlayer, guiGetText( amount ) ) --- عندما يرسل القيم الى السيرفر احضر المقدار 
end-- انهاء 
end)--- لاغلاق القوس في الاعلى 

Server-Side

addEvent('onStupid', true)--- نحط الايفينت عشان نفعله  
addEventHandler('onStupid', root,---- نحط الايفينت عشان نفعله  
function()---- الوظيفة 
----Code Here  
end)--- اغلاق القوس في الاول 
  
----طبعا انا استخدمت الحركه ذي من اختي تبوله ههههههههههه 

خطا ي اخوي

نرسل لمن ؟

لازم تجيب اسم الاعب وترسله للسيرفر

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