WTF_ Posted August 26, 2017 Share Posted August 26, 2017 addEventHandler("onClientResourceStart", resourceRoot, function() w1 = guiCreateWindow(306, 217, 194, 153, "حراس الحدود", false) guiWindowSetSizable(w1, false) b1 = guiCreateButton(35, 34, 131, 37, "نعم أريد المرور", false, w1) guiSetFont(b1, "default-bold-small") guiSetProperty(b1, "NormalTextColour", "FF008306") b2 = guiCreateButton(35, 81, 131, 37, "لا شكرا", false, w1) guiSetFont(b2, "default-bold-small") guiSetProperty(b2, "NormalTextColour", "FF820000") end ) addEventHandler( 'onClientResourceStart' , root , function( ) guiSetVisible( w1, false ) showCursor( false ) end ) addEventHandler ( "onMarkerHit", c2 , function (hitElement) guiSetVisible ( w1 , true ) showCursor( true ) outputChatBox ( "حارس الحدود : تفضل أخوي ماذا تريد ؟ هل تريد عبور الحدود ؟",hitElement,255,255,255, true ) end ) addEventHandler ( 'onClientGUIClick', root, function ( player ) if ( source == b2 ) then guiSetVisible( w1, false ) showCursor( false ) outputChatBox ( ""..getPlayerName( player )..": لا شكرا لا أريد العبور من الحدود . ", player, 255,255,255, true ) outputChatBox ( "حارس الحدود : حسنا , موفق ",player,255,255,255, true ) end end ) أبي مساعدة في ذا الكود , لما المس المارك ما بيضهر اللوحة وما بيضهر الكلام ولا شي وما في مشاكل في الديبيق وش الحل ؟ Link to comment
Ahmed Ly Posted August 26, 2017 Share Posted August 26, 2017 addEventHandler ( "onMarkerHit", c2 , function (hitElement) if hitElement == localPlayer then guiSetVisible ( w1 , true ) showCursor( true ) outputChatBox ( "حارس الحدود : تفضل أخوي ماذا تريد ؟ هل تريد عبور الحدود ؟",hitElement,255,255,255, true ) end end ) Link to comment
+Source|> Posted August 26, 2017 Share Posted August 26, 2017 addEventHandler ( "onMarkerHit", c2 , function (hitElement) guiSetVisible ( w1 , true ) showCursor( true ) outputChatBox ( "حارس الحدود : تفضل أخوي ماذا تريد ؟ هل تريد عبور الحدود ؟",hitElement,255,255,255, true ) end ) انت حاط هذا بالكلنت Link to comment
MR.StoRm Posted August 26, 2017 Share Posted August 26, 2017 (edited) 7 hours ago, Ahmed Ly said: addEventHandler ( "onMarkerHit", c2 , function (hitElement) if hitElement == localPlayer then guiSetVisible ( w1 , true ) showCursor( true ) outputChatBox ( "حارس الحدود : تفضل أخوي ماذا تريد ؟ هل تريد عبور الحدود ؟",hitElement,255,255,255, true ) end end ) 'onMarkerHit' -- Serverside event الإيفنت الصحيح : 'onClientMarkerHit' , أكوادك خليطة Edited August 26, 2017 by MR.StoRm # :) 1 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