-
Posts
2,193 -
Joined
-
Last visited
Everything posted by abu5lf
-
الكود الي معطيك كامل مغير حطه في ملف الكلنت وشغل المود يا عاشق المود مافيه لا ملف واحد الي هو server حطه في اي مود فيه ملف كلنت مثل الادمنية او الفري روم
-
الكود الي معطيك كامل مغير حطه في ملف الكلنت وشغل المود
-
bindKey( 'l', 'down', 'lights', '1' ) أو bindKey( 'l', 'down', 'lights', '2' ) حطه في ملف كلنت
-
onClientGUIClick - تنفيذ وظيفة GUI عند الضغط على . guiCreateStaticImage - انشاء صورة .
-
Report it .
-
All proofs are into a hidden section. If you say I'm not respect the members, Why don't ban me by administrator? Stop false accusation.
-
You have proof? How I help a lot of people and I don't respect the members? Stop false accusation.
-
وعليكم السلام بدال ماتسوي موضوع جديد عن كل اضافة او خبر للأستضافةة يمكنك اكماله في موضوع واحد : viewtopic.php?f=119&t=47498
-
-- Client Side GUIEditor_Window = {} GUIEditor_Grid = {} GUIEditor_Window[1] = guiCreateWindow(478, 201, 296, 372, "Select a vehicle", false) guiSetVisible ( GUIEditor_Window[1] , false ) GUIEditor_Grid[1] = guiCreateGridList(9, 21, 278, 243, false, GUIEditor_Window[1]) guiGridListSetSelectionMode(GUIEditor_Grid[1],2) guiGridListAddColumn(GUIEditor_Grid[1], "Available vehicles :", 0.9) aCars = { --[[{ 'Car Name', Id Car };]] { 'Camry', 411 }; } for _, aCar in ipairs( aCars )do local gRow = guiGridListAddRow( GUIEditor_Grid[1] ) guiGridListSetItemText( GUIEditor_Grid[1], gRow, 1, tostring( aCar[ 1 ] ), false, false ) guiGridListSetItemData( GUIEditor_Grid[1], gRow, 1, tostring( aCar[ 2 ] ) ) end addEventHandler( 'onClientGUIDoubleClick', GUIEditor_Grid[1], function( ) local iRow, iCol = guiGridListGetSelectedItem( GUIEditor_Grid[1] ) if( iRow and iCol and iRow ~= -1 and iCol ~= -1 )then local ID_Car = tonumber( guiGridListGetItemData( GUIEditor_Grid[1], iRow, 1 ) ) if ID_Car ~= '' then triggerServerEvent( 'giveCar', localPlayer, ID_Car ) guiSetVisible( GUIEditor_Window[1], false ) showCursor( false ) end end end, false ) Marker1 = createMarker( 0, 0, 4, 'arrow', 2.5, 0, 0, 255, 150 ) addEventHandler( 'onClientMarkerHit', Marker1, function( hitPlayer ) if hitPlayer == localPlayer then guiSetVisible( GUIEditor_Window[1], true ) showCursor( true ) end end ) -- Server Side vehicle = { } addEvent( 'giveCar', true ) addEventHandler( 'giveCar', getRootElement( ), function( ID ) if isElement( vehicle[ source ] ) then destroyElement( vehicle[ source ] ) vehicle[ source ] = nil end vehicle[ source ] = createVehicle( ID , getElementPosition( source ) ) warpPedIntoVehicle( source, vehicle[ source ] ) end ) addEventHandler( 'onPlayerQuit', getRootElement( ), function( ) if isElement( vehicle[ source ] ) then destroyElement( vehicle[ source ] ) vehicle[ source ] = nil end end )
-
أضغط على الوظيفة رآح يظهر لك شرح .
-
I have the ability to communicate in English I understand the Forum Rules I'm friendly and helpful every time I have good knowledge of scripting and I have helped a lot of people You can see that I have helped a lot of people in 99% of topics and I'm always online 24/7.
-
onVehicleStartEnter getPlayerTeam
-
Yes, it possible you must use: setAccountData getAccountData
-
داري ي أخي انا معطيه مثال ومعطيه الوظيفة عشان يسوي خط خارج اللعبةة .
-
يمديه يسوي الزر كذا for _, button in ipairs( getElementsByType( 'gui-button', g_ResRoot ) )do guiSetFont( button, 'default-bold-small' ) end نفس طريقة أضافة الكود إلي فوق
-
Show Your code then fix problem.
-
Stolen my script: https://community.multitheftauto.com/index.php?p= ... ls&id=6276 DONE
-
Button = guiCreateButton( 0.6, 0.95, 0.30, 0.25,'Show Chat', true ) addEventHandler( 'onClientGUIClick', Button, function( ) if not( i ) then showChat( true ) else showChat( false ) end i = not i end, false )
-
guiCreateFont - يمديك بهذا الوظيفة تنشيء خط خآرج اللعب
-
خط أيش؟ guiSetFont - عشان تحط خط . guiCreateFont - يمديك بهذا الوظيفة تنشيء خط خآرج اللعبة مثال : for _, label in ipairs( getElementsByType( 'gui-label', g_ResRoot ) )do guiSetFont( label, 'default-bold-small' ) end حطه في ملف الفري روم fr_client.lua السطر 1577 راح يغير خط الليبل