iPrestege Posted February 9, 2013 Share Posted February 9, 2013 "OnClientGUIClick" -- الايفنت يوم تضغط زر "OnClientGUIClick" = "onClientGUIClick" Link to comment
Max+ Posted February 9, 2013 Share Posted February 9, 2013 ---Pic Script -- Client addEventHandler('onClientGUIClick', resourceRoot, function() if ( source == ButtonName ) then guiCreateStaticImage( 20, 200, 100, 100, 'imagename.png', true ) guiSetVisible('imagename.png', false) end end) ---Show the window --Client addEvent('show', true) addEventHandler('show', root, function() guiSetVisible('imagename.png', true) end ) addEventHandler('onPlayerLogin', resourceRoot, function() local put = getTeamFromName('Red') if ( put ) then triggerClientEvent(source, 'show', source) setPlayerTeam( source, put) spawnPlayer(source, 0, 25, 5) giveWeapon(source, 31, 200) fadeCamera(source, true) setCameraTarget(source, source) setElementModel(source, 106) end end ) ----Server Teams addEventHandler('onResourceStart', resourceRoot, function() local team1 = createTeam( 'Red', 0, 255, 0) end ) اذا في أخطاء صححوها لصاحب الموضوع ~ Link to comment
PaiN^ Posted February 9, 2013 Share Posted February 9, 2013 أتوقع كذا !! غير مجرب -- Server side : addEventHandler( "onPlayerLogin", resourceRoot, function ( ) guiCreateStaticImage( 20, 200, 100, 100, "image1.png", true ) guiCreateStaticImage( 20, 200, 100, 100, "image2.png", true ) guiCreateStaticImage( 20, 200, 100, 100, "image3.png", true ) guiSetVisible( "image1.png", true ) guiSetVisible( "image2.png", true ) guiSetVisible( "image3.png", true ) end ) addEvent( "Pic1", true ) addEventHandler( "Pic1", root, function ( ) if ( getElementType ( source ) == "player" ) then spawnPlayer( source, X, Y, Z, 0, ID, 0, 0, Red ) giveWeapon( source, ID, 200 ) end end ) addEvent( "Pic2", true ) addEventHandler( "Pic2", root, function ( ) if ( getElementType ( source ) == "player" ) then spawnPlayer( source, X, Y, Z, 0, ID, 0, 0, Red ) giveWeapon( source, ID, 200 ) end end ) addEvent( "Pic3", true ) addEventHandler( "Pic3", root, function ( ) if ( getElementType ( source ) == "player" ) then spawnPlayer( source, X, Y, Z, 0, ID, 0, 0, Red ) giveWeapon( source, ID, 200 ) end end ) -- Client side : addEventHandler('onClientGUIClick', resourceRoot, function() if ( localPlayer == image1.png ) then triggerServerEvent ( "Pic1", localPlayer ) elseif ( localPlayer == image2.png ) then triggerServerEvent ( "Pic2", localPlayer ) elseif ( localPlayer ==image3.png ) then triggerServerEvent ( "Pic3", localPlayer ) end end ) إذا كان شغال السطور من 6 إلى 11 راح تحط image.png = PNG إسم الصورة ( طبعا 1 الصورة الأولى و 2 الصورة الثانية و3 الصورة الثالة ) لآزم تكون بصيغة بنق السطر 19 راح تحط X = الإحداثي إكس Y = الإحداثي واي Z = الإحداثي زد ID = رقم الشخصية Red = إسم الفريق والسطر 20 راح تحط ID = رقم الاي دي حق السلاح ونفس الخطوات في السطور 29 و 30 و 39 و 40 أخر شي في السطور 49,51,50 راح تحط نفس أسماء الصور إلي حطيتها في السطور من 6 إلى 11 وأتمنى تصحيح الأخطاء من المحترفين إن وجدت عشان لا يتعب خوينا عالفاضي Link to comment
TAPL Posted February 9, 2013 Share Posted February 9, 2013 أتوقع كذا !! غير مجرب -- Server side : addEventHandler( "onPlayerLogin", resourceRoot, function ( ) guiCreateStaticImage( 20, 200, 100, 100, "image1.png", true ) guiCreateStaticImage( 20, 200, 100, 100, "image2.png", true ) guiCreateStaticImage( 20, 200, 100, 100, "image3.png", true ) guiSetVisible( "image1.png", true ) guiSetVisible( "image2.png", true ) guiSetVisible( "image3.png", true ) end ) addEvent( "Pic1", true ) addEventHandler( "Pic1", root, function ( ) if ( getElementType ( source ) == "player" ) then spawnPlayer( source, X, Y, Z, 0, ID, 0, 0, Red ) giveWeapon( source, ID, 200 ) end end ) addEvent( "Pic2", true ) addEventHandler( "Pic2", root, function ( ) if ( getElementType ( source ) == "player" ) then spawnPlayer( source, X, Y, Z, 0, ID, 0, 0, Red ) giveWeapon( source, ID, 200 ) end end ) addEvent( "Pic3", true ) addEventHandler( "Pic3", root, function ( ) if ( getElementType ( source ) == "player" ) then spawnPlayer( source, X, Y, Z, 0, ID, 0, 0, Red ) giveWeapon( source, ID, 200 ) end end ) -- Client side : addEventHandler('onClientGUIClick', resourceRoot, function() if ( localPlayer == image1.png ) then triggerServerEvent ( "Pic1", localPlayer ) elseif ( localPlayer == image2.png ) then triggerServerEvent ( "Pic2", localPlayer ) elseif ( localPlayer ==image3.png ) then triggerServerEvent ( "Pic3", localPlayer ) end end ) إذا كان شغال السطور من 6 إلى 11 راح تحط image.png = PNG إسم الصورة ( طبعا 1 الصورة الأولى و 2 الصورة الثانية و3 الصورة الثالة ) لآزم تكون بصيغة بنق السطر 19 راح تحط X = الإحداثي إكس Y = الإحداثي واي Z = الإحداثي زد ID = رقم الشخصية Red = إسم الفريق والسطر 20 راح تحط ID = رقم الاي دي حق السلاح ونفس الخطوات في السطور 29 و 30 و 39 و 40 أخر شي في السطور 49,51,50 راح تحط نفس أسماء الصور إلي حطيتها في السطور من 6 إلى 11 وأتمنى تصحيح الأخطاء من المحترفين إن وجدت عشان لا يتعب خوينا عالفاضي WTF is this? Link to comment
iPrestege Posted February 9, 2013 Share Posted February 9, 2013 أتوقع كذا !! غير مجرب -- Server side : addEventHandler( "onPlayerLogin", resourceRoot, function ( ) guiCreateStaticImage( 20, 200, 100, 100, "image1.png", true ) guiCreateStaticImage( 20, 200, 100, 100, "image2.png", true ) guiCreateStaticImage( 20, 200, 100, 100, "image3.png", true ) guiSetVisible( "image1.png", true ) guiSetVisible( "image2.png", true ) guiSetVisible( "image3.png", true ) end ) addEvent( "Pic1", true ) addEventHandler( "Pic1", root, function ( ) if ( getElementType ( source ) == "player" ) then spawnPlayer( source, X, Y, Z, 0, ID, 0, 0, Red ) giveWeapon( source, ID, 200 ) end end ) addEvent( "Pic2", true ) addEventHandler( "Pic2", root, function ( ) if ( getElementType ( source ) == "player" ) then spawnPlayer( source, X, Y, Z, 0, ID, 0, 0, Red ) giveWeapon( source, ID, 200 ) end end ) addEvent( "Pic3", true ) addEventHandler( "Pic3", root, function ( ) if ( getElementType ( source ) == "player" ) then spawnPlayer( source, X, Y, Z, 0, ID, 0, 0, Red ) giveWeapon( source, ID, 200 ) end end ) -- Client side : addEventHandler('onClientGUIClick', resourceRoot, function() if ( localPlayer == image1.png ) then triggerServerEvent ( "Pic1", localPlayer ) elseif ( localPlayer == image2.png ) then triggerServerEvent ( "Pic2", localPlayer ) elseif ( localPlayer ==image3.png ) then triggerServerEvent ( "Pic3", localPlayer ) end end ) إذا كان شغال السطور من 6 إلى 11 راح تحط image.png = PNG إسم الصورة ( طبعا 1 الصورة الأولى و 2 الصورة الثانية و3 الصورة الثالة ) لآزم تكون بصيغة بنق السطر 19 راح تحط X = الإحداثي إكس Y = الإحداثي واي Z = الإحداثي زد ID = رقم الشخصية Red = إسم الفريق والسطر 20 راح تحط ID = رقم الاي دي حق السلاح ونفس الخطوات في السطور 29 و 30 و 39 و 40 أخر شي في السطور 49,51,50 راح تحط نفس أسماء الصور إلي حطيتها في السطور من 6 إلى 11 وأتمنى تصحيح الأخطاء من المحترفين إن وجدت عشان لا يتعب خوينا عالفاضي WTF is this? guiCreateStaticImage Server Side -___________-" ??? Link to comment
PaiN^ Posted February 9, 2013 Share Posted February 9, 2013 آآآححححح ما انتبهت بس لو في شي ثاني يا ليت تقولي Link to comment
PaiN^ Posted February 9, 2013 Share Posted February 9, 2013 أتوقع كذا !! غير مجرب -- Server side : addEventHandler( "onPlayerLogin", resourceRoot, function ( ) guiCreateStaticImage( 20, 200, 100, 100, "image1.png", true ) guiCreateStaticImage( 20, 200, 100, 100, "image2.png", true ) guiCreateStaticImage( 20, 200, 100, 100, "image3.png", true ) guiSetVisible( "image1.png", true ) guiSetVisible( "image2.png", true ) guiSetVisible( "image3.png", true ) end ) addEvent( "Pic1", true ) addEventHandler( "Pic1", root, function ( ) if ( getElementType ( source ) == "player" ) then spawnPlayer( source, X, Y, Z, 0, ID, 0, 0, Red ) giveWeapon( source, ID, 200 ) end end ) addEvent( "Pic2", true ) addEventHandler( "Pic2", root, function ( ) if ( getElementType ( source ) == "player" ) then spawnPlayer( source, X, Y, Z, 0, ID, 0, 0, Red ) giveWeapon( source, ID, 200 ) end end ) addEvent( "Pic3", true ) addEventHandler( "Pic3", root, function ( ) if ( getElementType ( source ) == "player" ) then spawnPlayer( source, X, Y, Z, 0, ID, 0, 0, Red ) giveWeapon( source, ID, 200 ) end end ) -- Client side : addEventHandler('onClientGUIClick', resourceRoot, function() if ( localPlayer == image1.png ) then triggerServerEvent ( "Pic1", localPlayer ) elseif ( localPlayer == image2.png ) then triggerServerEvent ( "Pic2", localPlayer ) elseif ( localPlayer ==image3.png ) then triggerServerEvent ( "Pic3", localPlayer ) end end ) إذا كان شغال السطور من 6 إلى 11 راح تحط image.png = PNG إسم الصورة ( طبعا 1 الصورة الأولى و 2 الصورة الثانية و3 الصورة الثالة ) لآزم تكون بصيغة بنق السطر 19 راح تحط X = الإحداثي إكس Y = الإحداثي واي Z = الإحداثي زد ID = رقم الشخصية Red = إسم الفريق والسطر 20 راح تحط ID = رقم الاي دي حق السلاح ونفس الخطوات في السطور 29 و 30 و 39 و 40 أخر شي في السطور 49,51,50 راح تحط نفس أسماء الصور إلي حطيتها في السطور من 6 إلى 11 وأتمنى تصحيح الأخطاء من المحترفين إن وجدت عشان لا يتعب خوينا عالفاضي WTF is this? This is me making mistakes to learn Link to comment
TAPL Posted February 9, 2013 Share Posted February 9, 2013 This is me making mistakes to learn Sorry, but your code makes no sense at all. Link to comment
PaiN^ Posted February 9, 2013 Share Posted February 9, 2013 Well, can you please fix it ? I really want to know how !! 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