Jump to content

تــــــــــــــــــــــــــــصــــــليح الكوووود


Simba

Recommended Posts

السلام عليكم ,,,,,

addEventHandler ("onclientGUIClick", getRootElement(), 
function () 
if source == GUIEditor_Button[1] then 
local x,y,z = getElementPosition(player) 
createVehicle ( 429, x,y,z ) 
outputChatBox("سياره") 
elseif source == GUIEditor_Button[3] then 
createVehicle ( 487, x,y,z ) 
outPutChatBox("طائرة") 
elseif source == GUIEditor_Button[4] then 
createVehicle ( 481, x,y,z ) 
outPutChatBox("دراجة") 
elseif source == GUIEditor_Button[5] then 
createVehicle ( 595, x,y,z ) 
outPutChatBox("لقارب") 
elseif source == GUIEditor_Button[6] then 
createVehicle ( 473, x,y,z ) 
outPutChatBox("لقارب") 
elseif source == GUIEditor_Button[7] then 
createVehicle ( 510, x,y,z ) 
outPutChatBox("دراجه كبيرة") 
end 
end) 

الكو ما يشتغل اللوحه تشتغل بس لما اضغط على الزر ما تجيني سياره

الاكواد كلينت انا حاطها

سويت لوحه وبها ازرار اضغط على الزر تجيني السياره الفلانيه بس انا اضغط على الزر ما يصير شي

Edited by Guest
Link to comment
addEventHandler ("onClientGUIClick", root, function () 
local x,y,z = getElementPosition(localPlayer) 
if ( source == GUIEditor_Button[1] ) then 
createVehicle ( 429, x,y,z ) 
outputChatBox("سياره") 
elseif ( source == GUIEditor_Button[3] ) then 
createVehicle ( 487, x,y,z ) 
outputChatBox("طائرة") 
elseif ( source == GUIEditor_Button[4] ) then 
createVehicle ( 481, x,y,z ) 
outputChatBox("دراجة") 
elseif ( source == GUIEditor_Button[5] ) then 
createVehicle ( 595, x,y,z ) 
outputChatBox("لقارب") 
elseif ( source == GUIEditor_Button[6] ) then 
createVehicle ( 473, x,y,z ) 
outputChatBox("لقارب") 
elseif ( source == GUIEditor_Button[7] ) then 
createVehicle ( 510, x,y,z ) 
outputChatBox("دراجه كبيرة") 
end 
end) 

Link to comment
addEventHandler ("onClientGUIClick", root, function ()
local x,y,z = getElementPosition(localPlayer)
if ( source == GUIEditor_Button[1] ) then
createVehicle ( 429, x,y,z )
outputChatBox("سياره")
elseif ( source == GUIEditor_Button[3] ) then
createVehicle ( 487, x,y,z )
outputChatBox("طائرة")
elseif ( source == GUIEditor_Button[4] ) then
createVehicle ( 481, x,y,z )
outputChatBox("دراجة")
elseif ( source == GUIEditor_Button[5] ) then
createVehicle ( 595, x,y,z )
outputChatBox("لقارب")
elseif ( source == GUIEditor_Button[6] ) then
createVehicle ( 473, x,y,z )
outputChatBox("لقارب")
elseif ( source == GUIEditor_Button[7] ) then
createVehicle ( 510, x,y,z )
outputChatBox("دراجه كبيرة")
end
end)

شكررا اشتغل

Link to comment

جـرب *

addEventHandler ("onClientGUIClick", root, function () 
local x,y,z = getElementPosition(localPlayer) 
if ( source == GUIEditor_Button[1] ) then 
triggerServerEvent("cool", localPlayer) 
outputChatBox("سياره") 
elseif ( source == GUIEditor_Button[3] ) then 
triggerServerEvent("coll", localPlayer) 
outputChatBox("طائرة") 
elseif ( source == GUIEditor_Button[4] ) then 
triggerServerEvent("col", localPlayer) 
outputChatBox("دراجة") 
elseif ( source == GUIEditor_Button[5] ) then 
triggerServerEvent("cooll", localPlayer) 
outputChatBox("لقارب") 
elseif ( source == GUIEditor_Button[6] ) then 
triggerServerEvent("coool", localPlayer) 
outputChatBox("لقارب") 
elseif ( source == GUIEditor_Button[7] ) then 
triggerServerEvent("ccol", localPlayer) 
outputChatBox("دراجه كبيرة") 
end 
end) 

addEvent("cool", true) 
addEventHandler("cool", root, 
function () 
  createVehicle ( 429, x,y,z ) 
end 
) 
  
addEvent("coll", true) 
addEventHandler("coll", root, 
function () 
  createVehicle ( 487, x,y,z ) 
end 
) 
  
addEvent("col", true) 
addEventHandler("col", root, 
function () 
  createVehicle ( 481, x,y,z ) 
end 
) 
  
addEvent("cooll", true) 
addEventHandler("cooll", root, 
function () 
  createVehicle ( 595, x,y,z ) 
end 
) 
  
addEvent("coool", true) 
addEventHandler("coool", root, 
function () 
  createVehicle ( 473, x,y,z ) 
end 
) 
  
addEvent("ccol", true) 
addEventHandler("ccol", root, 
function () 
  createVehicle ( 510, x,y,z ) 
end 
) 
Link to comment
جـرب *

addEventHandler ("onClientGUIClick", root, function () 
local x,y,z = getElementPosition(localPlayer) 
if ( source == GUIEditor_Button[1] ) then 
triggerServerEvent("cool", localPlayer) 
outputChatBox("سياره") 
elseif ( source == GUIEditor_Button[3] ) then 
triggerServerEvent("coll", localPlayer) 
outputChatBox("طائرة") 
elseif ( source == GUIEditor_Button[4] ) then 
triggerServerEvent("col", localPlayer) 
outputChatBox("دراجة") 
elseif ( source == GUIEditor_Button[5] ) then 
triggerServerEvent("cooll", localPlayer) 
outputChatBox("لقارب") 
elseif ( source == GUIEditor_Button[6] ) then 
triggerServerEvent("coool", localPlayer) 
outputChatBox("لقارب") 
elseif ( source == GUIEditor_Button[7] ) then 
triggerServerEvent("ccol", localPlayer) 
outputChatBox("دراجه كبيرة") 
end 
end) 

addEvent("cool", true) 
addEventHandler("cool", root, 
function () 
  createVehicle ( 429, x,y,z ) 
end 
) 
  
addEvent("coll", true) 
addEventHandler("coll", root, 
function () 
  createVehicle ( 487, x,y,z ) 
end 
) 
  
addEvent("col", true) 
addEventHandler("col", root, 
function () 
  createVehicle ( 481, x,y,z ) 
end 
) 
  
addEvent("cooll", true) 
addEventHandler("cooll", root, 
function () 
  createVehicle ( 595, x,y,z ) 
end 
) 
  
addEvent("coool", true) 
addEventHandler("coool", root, 
function () 
  createVehicle ( 473, x,y,z ) 
end 
) 
  
addEvent("ccol", true) 
addEventHandler("ccol", root, 
function () 
  createVehicle ( 510, x,y,z ) 
end 
) 
Link to comment
warpPedIntoVehicle 

مكتوب في الويكي كلنت وسيرفر !!

بس يتلون اصفر هنـآ غريبهـ

رآبط الويكي: https://wiki.multitheftauto.com/wiki/WarpPedIntoVehicle

اتوقع ان كلنت وهمي

وهمي ؟؟

يسحبه لتحت السياره مثلا خخخ :lol::lol::lol:

غريبة

**** قصدي كلينت السياره طافية وسيرفر السياره شغالة أتـوقـ‘ع

Link to comment
جـرب *

addEventHandler ("onClientGUIClick", root, function () 
local x,y,z = getElementPosition(localPlayer) 
if ( source == GUIEditor_Button[1] ) then 
triggerServerEvent("cool", localPlayer) 
outputChatBox("سياره") 
elseif ( source == GUIEditor_Button[3] ) then 
triggerServerEvent("coll", localPlayer) 
outputChatBox("طائرة") 
elseif ( source == GUIEditor_Button[4] ) then 
triggerServerEvent("col", localPlayer) 
outputChatBox("دراجة") 
elseif ( source == GUIEditor_Button[5] ) then 
triggerServerEvent("cooll", localPlayer) 
outputChatBox("لقارب") 
elseif ( source == GUIEditor_Button[6] ) then 
triggerServerEvent("coool", localPlayer) 
outputChatBox("لقارب") 
elseif ( source == GUIEditor_Button[7] ) then 
triggerServerEvent("ccol", localPlayer) 
outputChatBox("دراجه كبيرة") 
end 
end) 

addEvent("cool", true) 
addEventHandler("cool", root, 
function () 
  createVehicle ( 429, x,y,z ) 
end 
) 
  
addEvent("coll", true) 
addEventHandler("coll", root, 
function () 
  createVehicle ( 487, x,y,z ) 
end 
) 
  
addEvent("col", true) 
addEventHandler("col", root, 
function () 
  createVehicle ( 481, x,y,z ) 
end 
) 
  
addEvent("cooll", true) 
addEventHandler("cooll", root, 
function () 
  createVehicle ( 595, x,y,z ) 
end 
) 
  
addEvent("coool", true) 
addEventHandler("coool", root, 
function () 
  createVehicle ( 473, x,y,z ) 
end 
) 
  
addEvent("ccol", true) 
addEventHandler("ccol", root, 
function () 
  createVehicle ( 510, x,y,z ) 
end 
) 

مااا اشتغغل

Link to comment

* جرب ذذ طيب

addEventHandler ("onClientGUIClick", root, function () 
local x,y,z = getElementPosition(localPlayer) 
if ( source == GUIEditor_Button[1] ) then 
triggerServerEvent("cool", localPlayer) 
outputChatBox("سياره") 
elseif ( source == GUIEditor_Button[3] ) then 
triggerServerEvent("coll", localPlayer) 
outputChatBox("طائرة") 
elseif ( source == GUIEditor_Button[4] ) then 
triggerServerEvent("col", localPlayer) 
outputChatBox("دراجة") 
elseif ( source == GUIEditor_Button[5] ) then 
triggerServerEvent("cooll", localPlayer) 
outputChatBox("لقارب") 
elseif ( source == GUIEditor_Button[6] ) then 
triggerServerEvent("coool", localPlayer) 
outputChatBox("لقارب") 
elseif ( source == GUIEditor_Button[7] ) then 
triggerServerEvent("ccol", localPlayer) 
outputChatBox("دراجه كبيرة") 
end 
end) 

addEvent("cool", true) 
addEventHandler("cool", root, 
function () 
  vehh = createVehicle ( 429, x,y,z ) 
  warpPedIntoVehicle ( source, vehh ) 
end 
) 
  
addEvent("coll", true) 
addEventHandler("coll", root, 
function () 
  veehh = createVehicle ( 487, x,y,z ) 
  warpPedIntoVehicle ( source, veehh ) 
end 
) 
  
addEvent("col", true) 
addEventHandler("col", root, 
function () 
  veeh = createVehicle ( 481, x,y,z ) 
  warpPedIntoVehicle ( source, veeh ) 
end 
) 
  
addEvent("cooll", true) 
addEventHandler("cooll", root, 
function () 
  veesh = createVehicle ( 595, x,y,z ) 
  warpPedIntoVehicle ( source, veesh ) 
end 
) 
  
addEvent("coool", true) 
addEventHandler("coool", root, 
function () 
    vesh = createVehicle ( 473, x,y,z ) 
  warpPedIntoVehicle ( source, vesh ) 
end 
) 
  
addEvent("ccol", true) 
addEventHandler("ccol", root, 
function () 
    veshh = createVehicle ( 429, x,y,z ) 
  warpPedIntoVehicle ( source, veshh ) 
end 
) 
Link to comment
-- Client 
addEventHandler ( "onClientGUIClick", root, function (  ) 
local x, y, z = getElementPosition ( localPlayer ); 
if ( source == GUIEditor_Button[1] ) then 
triggerServerEvent ( "giveCar", 429, x, y, z ); 
elseif ( source == GUIEditor_Button[3] ) then 
triggerServerEvent ( "giveCar", 487, x, y, z ); 
elseif ( source == GUIEditor_Button[4] ) then 
triggerServerEvent ( "giveCar", 481, x, y, z ); 
elseif ( source == GUIEditor_Button[5] ) then 
triggerServerEvent ( "giveCar", 595, x, y, z ); 
elseif ( source == GUIEditor_Button[6] ) then 
triggerServerEvent ( "giveCar", 473, x, y, z ); 
elseif ( source == GUIEditor_Button[7] ) then 
triggerServerEvent ( "giveCar", 510, x, y, z ); 
end 
end 
); 

  
-- Server 
cTable = {  }; 
  
addEvent ( "giveCar", true ); 
addEventHandler ( "giveCar", function ( ID, x, y, z ) 
if isElement ( cTable [ client ] ) then destroyElement ( cTable [ client ] ) cTable [ client ] = nil end 
cTable [ client ] = createVehicle ( ID, x, y + 2, z ); 
warpPedIntoVehicle ( client, cTable [ client ] ); 
end 
); 
  
addEventHandler ( "onPlayerQuit", root, function (  ) 
if isElement ( cTable [ source ] ) then 
destroyElement ( cTable [ source ] ); 
end 
cTable [ source ] = nil 
end 
); 
  
addEventHandler ( "onVehicleExplode", resourceRoot, function (  ) 
destroyElement ( source ); 
end 
); 

Edited by Guest
Link to comment
-- Client 
addEventHandler ( "onClientGUIClick", root, function (  ) 
local x, y, z = getElementPosition ( localPlayer ); 
if ( source == GUIEditor_Button[1] ) then 
triggerServerEvent ( "giveCar", 429, x, y, z ); 
elseif ( source == GUIEditor_Button[3] ) then 
triggerServerEvent ( "giveCar", 487, x, y, z ); 
elseif ( source == GUIEditor_Button[4] ) then 
triggerServerEvent ( "giveCar", 481, x, y, z ); 
elseif ( source == GUIEditor_Button[5] ) then 
triggerServerEvent ( "giveCar", 595, x, y, z ); 
elseif ( source == GUIEditor_Button[6] ) then 
triggerServerEvent ( "giveCar", 473, x, y, z ); 
elseif ( source == GUIEditor_Button[7] ) then 
triggerServerEvent ( "giveCar", 510, x, y, z ); 
end 
end 
); 

  
-- Server 
cTable = {  }; 
  
addEvent ( "giveCar", true ); 
addEventHandler ( "giveCar", function ( ID, x, y, z ) 
if isElement ( cTable [ client ] ) then destroyElement ( cTable [ client ] ) cTable [ client ] = nil end 
cTable [ client ] = createVehicle ( ID, x, y + 2, z ); 
warpPedIntoVehicle ( client, cTable [ client ] ); 
end 
); 
  
addEventHandler ( "onPlayerQuit", root, function (  ) 
if isElement ( cTable [ source ] ) then 
destroyElement ( cTable [ source ] ); 
end 
cTable [ source ] = nil 
end 
); 
  
addEventHandler ( "onVehicleExplode", resourceRoot, function (  ) 
destroyElement ( source ); 
cTable [ source ] = nil 
end 
); 

onVehicleExplode:

The source of this event is the vehicle that exploded.

Link to comment
-- Client 
addEventHandler ( "onClientGUIClick", root, function (  ) 
local x, y, z = getElementPosition ( localPlayer ); 
if ( source == GUIEditor_Button[1] ) then 
triggerServerEvent ( "giveCar", 429, x, y, z ); 
elseif ( source == GUIEditor_Button[3] ) then 
triggerServerEvent ( "giveCar", 487, x, y, z ); 
elseif ( source == GUIEditor_Button[4] ) then 
triggerServerEvent ( "giveCar", 481, x, y, z ); 
elseif ( source == GUIEditor_Button[5] ) then 
triggerServerEvent ( "giveCar", 595, x, y, z ); 
elseif ( source == GUIEditor_Button[6] ) then 
triggerServerEvent ( "giveCar", 473, x, y, z ); 
elseif ( source == GUIEditor_Button[7] ) then 
triggerServerEvent ( "giveCar", 510, x, y, z ); 
end 
end 
); 

  
-- Server 
cTable = {  }; 
  
addEvent ( "giveCar", true ); 
addEventHandler ( "giveCar", function ( ID, x, y, z ) 
if isElement ( cTable [ client ] ) then destroyElement ( cTable [ client ] ) cTable [ client ] = nil end 
cTable [ client ] = createVehicle ( ID, x, y + 2, z ); 
warpPedIntoVehicle ( client, cTable [ client ] ); 
end 
); 
  
addEventHandler ( "onPlayerQuit", root, function (  ) 
if isElement ( cTable [ source ] ) then 
destroyElement ( cTable [ source ] ); 
end 
cTable [ source ] = nil 
end 
); 
  
addEventHandler ( "onVehicleExplode", resourceRoot, function (  ) 
destroyElement ( source ); 
cTable [ source ] = nil 
end 
); 

onVehicleExplode:

The source of this event is the vehicle that exploded.

أوبس سويته هريسة xD

نم التعديل ..

Link to comment

ولا كوووووود شغاااااال

كلهم اضغط على الزر بس يطلعون كلام بالشات

مايعطوني شيئ وبعضهم مثل كود جعفر لا يطلع كلام ولا يطلع سياره

---

عندي لوحة ببضغط على زر تعطيني سياره

بس ما تعطيني الاكواد ما تشتغل

Link to comment
GUIEditor_Window = {} 
GUIEditor_Button = {} 
  
GUIEditor_Window[1] = guiCreateWindow(167,84,540,480,"لوحه الانشاء",false) 
guiSetAlpha(GUIEditor_Window[1],1) 
GUIEditor_Button[1] = guiCreateButton(31,48,195,83,"سيارة",false,GUIEditor_Window[1]) 
GUIEditor_Button[2] = guiCreateButton(158,167,5,5,"",false,GUIEditor_Button[1]) 
GUIEditor_Button[3] = guiCreateButton(292,48,195,83,"طياره",false,GUIEditor_Window[1]) 
GUIEditor_Button[4] = guiCreateButton(292,203,195,83,"دراجه صغيره",false,GUIEditor_Window[1]) 
GUIEditor_Button[5] = guiCreateButton(31,198,195,83,"قارب 1",false,GUIEditor_Window[1]) 
GUIEditor_Button[6] = guiCreateButton(31,337,195,83,"قارب 2",false,GUIEditor_Window[1]) 
GUIEditor_Button[7] = guiCreateButton(292,335,195,83,"دراجه  كبيرة",false,GUIEditor_Window[1]) 
----- 
guiSetVisible(GUIEditor_Window[1],false) 
bindKey ( "F7" , "down" , function() 
  
if ( guiGetVisible ( GUIEditor_Window[1] ) == true ) then 
 guiSetVisible ( GUIEditor_Window[1] ,false ) 
 showCursor (false ) 
 guiSetInputEnabled(false) 
  
 elseif ( guiGetVisible ( GUIEditor_Window[1] ) == false ) then 
 guiSetVisible ( GUIEditor_Window[1] ,true ) 
 showCursor (false ) 
 guiSetInputEnabled(true) 
 end 
 end 
 ) 
 -- 
  
addEventHandler ("onClientGUIClick", root, function () 
local x,y,z = getElementPosition(localPlayer) 
if ( source == GUIEditor_Button[1] ) then 
createVehicle ( 429, x,y,z ) 
outputChatBox("سياره") 
elseif ( source == GUIEditor_Button[3] ) then 
createVehicle ( 487, x,y,z ) 
outputChatBox("طائرة") 
elseif ( source == GUIEditor_Button[4] ) then 
createVehicle ( 481, x,y,z ) 
outputChatBox("دراجة") 
elseif ( source == GUIEditor_Button[5] ) then 
createVehicle ( 595, x,y,z ) 
outputChatBox("لقارب") 
elseif ( source == GUIEditor_Button[6] ) then 
createVehicle ( 473, x,y,z ) 
outputChatBox("لقارب") 
elseif ( source == GUIEditor_Button[7] ) then 
createVehicle ( 510, x,y,z ) 
outputChatBox("دراجه كبيرة") 
end 
end) 

هنااااا يعطيني سياره بس ما اقدر اركبها لانها كلنت وهميه يعني لازم اسوي ترايقر

انا عادي ابغا بس اضغط على الزر تجيني السياره بدون ما يركبها تلقائي

يعني لاااا تحط وااارب

Link to comment
GUIEditor_Window = {} 
GUIEditor_Button = {} 
  
GUIEditor_Window[1] = guiCreateWindow(167,84,540,480,"لوحه الانشاء",false) 
guiSetAlpha(GUIEditor_Window[1],1) 
GUIEditor_Button[1] = guiCreateButton(31,48,195,83,"سيارة",false,GUIEditor_Window[1]) 
GUIEditor_Button[2] = guiCreateButton(158,167,5,5,"",false,GUIEditor_Button[1]) 
GUIEditor_Button[3] = guiCreateButton(292,48,195,83,"طياره",false,GUIEditor_Window[1]) 
GUIEditor_Button[4] = guiCreateButton(292,203,195,83,"دراجه صغيره",false,GUIEditor_Window[1]) 
GUIEditor_Button[5] = guiCreateButton(31,198,195,83,"قارب 1",false,GUIEditor_Window[1]) 
GUIEditor_Button[6] = guiCreateButton(31,337,195,83,"قارب 2",false,GUIEditor_Window[1]) 
GUIEditor_Button[7] = guiCreateButton(292,335,195,83,"دراجه  كبيرة",false,GUIEditor_Window[1]) 
----- 
guiSetVisible(GUIEditor_Window[1],false) 
bindKey ( "F7" , "down" , function() 
  
if ( guiGetVisible ( GUIEditor_Window[1] ) == true ) then 
 guiSetVisible ( GUIEditor_Window[1] ,false ) 
 showCursor (false ) 
 guiSetInputEnabled(false) 
  
 elseif ( guiGetVisible ( GUIEditor_Window[1] ) == false ) then 
 guiSetVisible ( GUIEditor_Window[1] ,true ) 
 showCursor (false ) 
 guiSetInputEnabled(true) 
 end 
 end 
 ) 
 -- 
  
addEventHandler ("onClientGUIClick", root, function () 
local x,y,z = getElementPosition(localPlayer) 
if ( source == GUIEditor_Button[1] ) then 
createVehicle ( 429, x,y,z ) 
outputChatBox("سياره") 
elseif ( source == GUIEditor_Button[3] ) then 
createVehicle ( 487, x,y,z ) 
outputChatBox("طائرة") 
elseif ( source == GUIEditor_Button[4] ) then 
createVehicle ( 481, x,y,z ) 
outputChatBox("دراجة") 
elseif ( source == GUIEditor_Button[5] ) then 
createVehicle ( 595, x,y,z ) 
outputChatBox("لقارب") 
elseif ( source == GUIEditor_Button[6] ) then 
createVehicle ( 473, x,y,z ) 
outputChatBox("لقارب") 
elseif ( source == GUIEditor_Button[7] ) then 
createVehicle ( 510, x,y,z ) 
outputChatBox("دراجه كبيرة") 
end 
end) 

هنااااا يعطيني سياره بس ما اقدر اركبها لانها كلنت وهميه يعني لازم اسوي ترايقر

انا عادي ابغا بس اضغط على الزر تجيني السياره بدون ما يركبها تلقائي

يعني لاااا تحط وااارب

-- Client 
addEventHandler ( "onClientGUIClick", root, function (  ) 
local x, y, z = getElementPosition ( localPlayer ); 
if ( source == GUIEditor_Button[1] ) then 
triggerServerEvent ( "giveCar", 429, x, y, z ); 
elseif ( source == GUIEditor_Button[3] ) then 
triggerServerEvent ( "giveCar", 487, x, y, z ); 
elseif ( source == GUIEditor_Button[4] ) then 
triggerServerEvent ( "giveCar", 481, x, y, z ); 
elseif ( source == GUIEditor_Button[5] ) then 
triggerServerEvent ( "giveCar", 595, x, y, z ); 
elseif ( source == GUIEditor_Button[6] ) then 
triggerServerEvent ( "giveCar", 473, x, y, z ); 
elseif ( source == GUIEditor_Button[7] ) then 
triggerServerEvent ( "giveCar", 510, x, y, z ); 
end 
end 
); 

  
-- Server 
cTable = {  }; 
  
addEvent ( "giveCar", true ); 
addEventHandler ( "giveCar", function ( ID, x, y, z ) 
if isElement ( cTable [ client ] ) then destroyElement ( cTable [ client ] ) cTable [ client ] = nil end 
cTable [ client ] = createVehicle ( ID, x, y + 2, z ); 
warpPedIntoVehicle ( client, cTable [ client ] ); 
end 
); 
  
addEventHandler ( "onPlayerQuit", root, function (  ) 
if isElement ( cTable [ source ] ) then 
destroyElement ( cTable [ source ] ); 
end 
cTable [ source ] = nil 
end 
); 
  
addEventHandler ( "onVehicleExplode", resourceRoot, function (  ) 
destroyElement ( source ); 
end 
); 

. فقط إحذف سطر رقم 9 من الكود الي بجانب سيرفر

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