Tete omar Posted June 1, 2012 Share Posted June 1, 2012 بسم الله الرحمن الرحيم 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
Scripting Posted June 1, 2012 Share Posted June 1, 2012 (edited) سو زي كدا 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 June 1, 2012 by Guest Link to comment
Tete omar Posted June 1, 2012 Author Share Posted June 1, 2012 سو زي كدا 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
Scripting Posted June 1, 2012 Share Posted June 1, 2012 غيرها ل في addEventHandler( "onClientGUIClick", playerGridList, onClick) الى addEventHandler( "onClientGUIClick", GUIEditor_Grid[1], onClick) Link to comment
Tete omar Posted June 1, 2012 Author Share Posted June 1, 2012 غيرها ل فيaddEventHandler( "onClientGUIClick", playerGridList, onClick) الى addEventHandler( "onClientGUIClick", GUIEditor_Grid[1], onClick) مشكووور Link to comment
Tete omar Posted June 1, 2012 Author Share Posted June 1, 2012 العفو طيب معليش عالسريع ابي كود ارسال الفلوس من لاعب لآخر والحد الأدنى لللارسال 10 دولار وشكراً Link to comment
Scripting Posted June 1, 2012 Share Posted June 1, 2012 هدا متعلق ب 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
X-SHADOW Posted June 2, 2012 Share Posted June 2, 2012 هدا متعلق ب 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
Tete omar Posted June 2, 2012 Author Share Posted June 2, 2012 هدا متعلق ب 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
abu5lf Posted June 2, 2012 Share Posted June 2, 2012 --Client guiGetText -- event triggerServerEvent onClientGUIClick -- Server getPlayerMoney getPlayerFromName givePlayerMoney takePlayerMoney -- event addEvent addEventHandler Link to comment
Scripting Posted June 2, 2012 Share Posted June 2, 2012 انت عدل على حساب كودك انا ما راح ابقى كل شيء اعطيك جاهز Link to comment
TAPL Posted June 2, 2012 Share Posted June 2, 2012 انت عدل على حساب كودك انا ما راح ابقى كل شيء اعطيك جاهز function onClick () if ( source =="sendMoney" ) then ان كان الاختيار زر ارسال الفلوس Value = guiGetText( amount ) triggerServerEvent ("sendMoney", getLocalPlayer(), amount) هههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههه function (amount) if (amount=>tonumber("200") then ان كانت الفلوس اكبر من هههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههه Link to comment
Bssol Posted June 2, 2012 Share Posted June 2, 2012 انت عدل على حساب كودك انا ما راح ابقى كل شيء اعطيك جاهز 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
abu5lf Posted June 2, 2012 Share Posted June 2, 2012 انت عدل على حساب كودك انا ما راح ابقى كل شيء اعطيك جاهز انا شاطح بس ودي اعرف اعراب الجملة ذي " انا ما راح ابقى " Link to comment
Scripting Posted June 2, 2012 Share Posted June 2, 2012 موت بس انا اكلم داك من دخلك انت يا ش.... + tonumber وش فيها؟ Link to comment
TAPL Posted June 3, 2012 Share Posted June 3, 2012 موت بس انا اكلم داك من دخلك انت يا ش....+ tonumber وش فيها؟ هههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههه هههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههه هههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههه هههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههه هههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههه هههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههه هههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههه هههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههه هههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههه هههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههه Link to comment
X-SHADOW Posted June 3, 2012 Share Posted June 3, 2012 تبولتي لاتضحكين خخخخ 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
Tete omar Posted June 3, 2012 Author Share Posted June 3, 2012 تبولتي لاتضحكين خخخخ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
abu5lf Posted June 3, 2012 Share Posted June 3, 2012 تبولتي لاتضحكين خخخخ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
X-SHADOW Posted June 4, 2012 Share Posted June 4, 2012 طيب ماتشوف كلمة ---Code here ? يعني هو يكمل الباقي , Link to comment
abu5lf Posted June 4, 2012 Share Posted June 4, 2012 طيب ماتشوف كلمة ---Code here ?يعني هو يكمل الباقي , triggerServerEvent('onStupid', localPlayer, guiGetText( amount ) ) :\ Link to comment
X-SHADOW Posted June 4, 2012 Share Posted June 4, 2012 CX.83 its not wrong see the wiki page event first then the element = source and soucre == player - thePlayer-localPlayer-getLocalPlayer all work. Link to comment
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now