Szerző Téma: Carshop-System  (Megtekintve 1153 alkalommal)

Carshop-System
« Dátum: 2014. július 16. - 20:06:45 »
0 Show voters
Hello!A carshop-system bugos!Azt írja túl sok kocsid van de már beraktam egy csomó c_vehicle_globals-t meg s_vehicle_global-t
de mi a baj?

Nem elérhető Martin

  • 160
    • Profil megtekintése
Carshop-System
« Válasz #1 Dátum: 2014. július 16. - 20:47:51 »
0 Show voters
Jó lesz, használd ezt.
c_vehicle_globals
 
 local factor = 1.5
function relateVelocity(speed)
return factor * speed
end
function getVehicleVelocity(vehicle)
speedx, speedy, speedz = getElementVelocity (vehicle)
return relateVelocity((speedx^2 + speedy^2 + speedz^2)^(0.5)*100)
end

 
s_vehicle_globals
 
 function getVehiclesOwnedByCharacter(thePlayer)
local dbid = tonumber(getElementData(thePlayer, \"dbid\"))
local carids = { }
local numcars = 0
local indexcars = 1
for key, value in ipairs(exports.pool:getPoolElementsByType(\"vehicle\")) do
local owner = tonumber(getElementData(value, \"owner\"))
if (owner) and (owner==dbid) then
   local id = getElementData(value, \"dbid\")
   carids[numcars+1] = id
   numcars = numcars + 1
end
end
return numcars, carids
end
function canPlayerBuyVehicle(thePlayer)
if (isElement(thePlayer)) then
if getElementData(thePlayer, \"loggedin\") == 1 then
   local maxvehicles = getElementData(thePlayer, \"maxvehicles\") or 0
   local novehicles, veharray = getVehiclesOwnedByCharacter(thePlayer)
   if (novehicles < maxvehicles) then
      return true
   end
   return false, \"Túl sok jármű\"
end
return false, \"Játékos nincs bejelentkezve\"
end
return false, \"Element not found\"
end
« Utoljára szerkesztve: 2014. július 16. - 20:49:24 írta Martin »

Carshop-System
« Válasz #2 Dátum: 2014. július 17. - 19:20:42 »
0 Show voters
Köszi

Nem elérhető Martin

  • 160
    • Profil megtekintése
Carshop-System
« Válasz #3 Dátum: 2014. július 17. - 19:29:20 »
0 Show voters
Nincsmit. :)

Nem elérhető Toxic

  • 798
  • #elfújalágyszellő
    • Profil megtekintése
Carshop-System
« Válasz #4 Dátum: 2014. augusztus 12. - 15:47:32 »
0 Show voters
[mod]Megoldódott, zárom.[/mod]

 

SimplePortal 2.3.7 © 2008-2024, SimplePortal