addEvent("Rhino",true)
addEventHandler("Rhino",root,
function() --
local x,y,z = getElementPosition ( source )
local Get = getPlayerMoney(source)
if Get >= 200 then
takePlayerMoney (source,100)
rhino = createVehicle ( 403, x, y, z )
warpPedIntoVehicle(source, rhino)
outputChatBox("* لقد اشتريت سيارة",source,255,255,0,true)
else
outputChatBox("* لا تملك المال الكافي للشراء !"source,0,0,0,true)
end
end)