Üzenetek megjelenítése

Ez a szekció lehetővé teszi a felhasználó által írt összes hozzászólás megtekintését. Vedd figyelembe, hogy csak azokba a fórumokba írt hozzászólásokat látod, amelyekhez hozzáférésed van.


Üzenetek - 99makarov99

Oldalak: [1]
1
Segítségkérés / 2 mta kliens elindátsa 1 gépen
« Dátum: 2017. Augusztus 21. - 14:18:54 »
Hali, azt szeretném megkérdezni, hogy hogyan tudom 2-szer elindítani az mta-t? (Tesztelni akarok, de csak egy gépem van)

2
Segítségkérés / Zero frakció rang kiírás
« Dátum: 2017. Augusztus 10. - 23:08:03 »
igen, így lett megoldva, csak idő kellett hozzá... azért köszi
 
az előzőknek meg köszi a lenézést. :)

3
Segítségkérés / Zero frakció rang kiírás
« Dátum: 2017. Augusztus 10. - 15:36:48 »
és azt nem tudod, hogy ezt hol találom meg? frakció? nametags?

4
Segítségkérés / Zero frakció rang kiírás
« Dátum: 2017. Augusztus 10. - 14:37:20 »
Hali azt szeretném megkérdezni, hogy a képen piros kerettel megjelölt dolgot, ahol a szint: 15 van oda, hogyan lehetne kiíratni magát a rangot?
PL.: Kadét
Illetve hol találom ezt? mert nem találom és most vettem észre, hogy van ilyen...
segítséget előre is köszi
 
 
 
\"291mta_screen_2017_08_09_.png\"

5
Segítségkérés / Zero mod carshop-system
« Dátum: 2017. Július 27. - 23:29:19 »
Sziasztok! Azt szeretném megkérdezni, hogy mi lehet a probléma a zero modos carshop-systemnek, hogy nem enged járművet vásárolni mert azt írja, hogy \"neked túl sok kocsid van.\"
pedig 1 db kocsim sincs, és még arra sem lehet fogni, hogy a felhasználó vagy a karakter van elbugolva mert 2 felhasználóval is próbáltam, de ugyan azt írja.
 

local mysql = exports.mysql
local priceCache = { }
local vehiclecount = { }
carshopPickup = createPickup(544.4990234375, -1292.7890625, 17.2421875, 3, 1239)
exports[\'anticheat-system\']:changeProtectedElementDataEx(carshopPickup, \"shopid\", 1, false)
boatshopPickup = createPickup(715.35546875, -1705.5791015625, 2.4296875, 3, 1239)
exports[\'anticheat-system\']:changeProtectedElementDataEx(boatshopPickup, \"shopid\", 2, false)
cheapcarshopPickup = createPickup( 2131.8115234375, -1151.3212890625, 24.060283660889, 3, 1239)
exports[\'anticheat-system\']:changeProtectedElementDataEx(cheapcarshopPickup, \"shopid\", 3, false)
function pickupUse(thePlayer)
if getElementData(source, \"shopid\") then
   if getElementData(thePlayer, \"license.car\") == 1 then
      triggerClientEvent(thePlayer, \"showCarshopUI\", thePlayer, getElementData(source, \"shopid\"))
   else
      outputChatBox(\"Csak jogosítvánnyal tudsz járművet venni.\", thePlayer, 255, 0, 0)
   end
end
cancelEvent()
end
addEventHandler(\"onPickupHit\", getResourceRootElement(), pickupUse)
function test(thePlayer)
triggerClientEvent(thePlayer, \"showCarshopUI\", thePlayer, 4)
end
addCommandHandler(\"testgui\",test)
local function copy( t )
if type(t) == \'table\' then
   local r = {}
   for k, v in pairs( t ) do
      r[k] = copy( v )
   end
   return r
else
   return t
end
end
local function countVehicles( )
vehiclecount = {}
for key, value in pairs( getElementsByType( \"vehicle\" ) ) do
   if isElement( value ) then
      local model = getElementModel( value )
      if vehiclecount[ model ] then
         vehiclecount[ model ] = vehiclecount[ model ] + 1
      else
         vehiclecount[ model ] = 1
      end
   end
end
end
 
function buildPriceCache(shopID)
priceCache[shopID] = { }
if tonumber(shopID) == 4 then
   local activeShop = copy( g_shops[shopID] )
   for key, value in ipairs( activeShop ) do
      if value[1] and value[2] and vehiclecount[ value[1] ] then
         priceCache[shopID][ value[1] ] = value[1]
      end
   end
   return
end
local activeShop = copy( g_shops[shopID] )
for key, value in ipairs( activeShop ) do
   if value[1] and value[2] and vehiclecount[ value[1] ] then
      priceCache[shopID][ value[1] ] = value[2] + ( vehiclecount[ value[1] ] or 0 ) * 600
   end
end

end
function buyCar(id, cost, col1, col2, x, y, z, rz, px, py, pz, prz, shopID)
countVehicles()
buildPriceCache(shopID)
--[[if not(priceCache[shopID][id]) then
   exports.logs:logMessage(\"[CAR SHOP] \" .. getPlayerIP(client)..\" \\ \".. getPlayerName( client ) .. \"  tried to buy an \" .. getVehicleNameFromModel( id ) .. \" at an non existing shop for $\".. cost..\")\", 32)
   return
end]]

--[[if not (priceCache[shopID][id] == cost) then
   exports.logs:logMessage(\"[CAR SHOP] \" .. getPlayerIP(client)..\" \\ \" .. getPlayerName( client ) .. \"  tried to buy an \" .. getVehicleNameFromModel( id ) .. \" at shop \".. shopID ..\" for $\".. cost..\")\", 32)
   return
end]]
if exports.global:hasMoney(client, cost) then
   if not ( getElementData(client, \"loggedin\") == 1 ) then
      name = getPlayerName(client)
      exports.global:sendMessageToAdmins(\"\")
      return
      
   end
   if shopID == 4 then
      for key, value in pairs( getElementsByType( \"vehicle\" ) ) do
         if isElement( value ) then
            if getElementData(value, \"owner\") == getElementData(client, \"dbid\") then
               if getElementData(value, \"rent\") == 1 then
                  outputChatBox(\"You are already renting a vehicle\",client,250,255,0)
                  return
               end
            end
         end
      end
   end
   if exports.global:canPlayerBuyVehicle(client) then
      
      outputChatBox(\"Megvetted \" .. getVehicleNameFromModel(id) .. \" nevű kocsi \" .. cost .. \" FT-ért.\", client, 255, 194, 14)
      
      if shopID == 1 then
         outputChatBox(\"Sikeresen megvetted a kocsit! Ahoz, hogy ne tűnjön el parkold le a /park parancsal.\", client, 255, 194, 14)
         outputChatBox(\"\", client, 255, 0, 0)
      elseif shopID == 2 then
         outputChatBox(\"Sikeresen megvetted a kocsit! Ahoz, hogy ne tűnjön el parkold le a /park parancsal.\", client, 255, 194, 14)
         outputChatBox(\"\", client, 255, 0, 0)
      end
      outputChatBox(\"Ha nem parkolod le a kocsidat, akkor törlésre kerül.\", client, 255, 0, 0)
      outputChatBox(\"Nyomj \'k\'-t a kocsi kinyitásához.\", client, 255, 194, 14)
      makeCar(client, id, cost, col1, col2, x, y, z, rz, px, py, pz, prz,shopID)
   else
      outputChatBox(\"Neked túl sok kocsid van.\", client, 255, 0, 0)
   end
   
   
end
end
addEvent(\"buyCar\", true)
addEventHandler(\"buyCar\", getRootElement(), buyCar)
function tinyid( ) -- finds the smallest ID in the SQL instead of auto increment
local result = mysql:query_fetch_assoc(\"SELECT MIN(e1.id+1) AS nextID FROM vehicles AS e1 LEFT JOIN vehicles AS e2 ON e1.id +1 = e2.id WHERE e2.id IS NULL\")
if result then
   local id = tonumber(result[\"nextID\"]) or 1
   return id
end
return false
end
 
function makeCar(thePlayer, id, cost, col1, col2, x, y, z, rz, px, py, pz, prz, shopID,ids)
if not exports.global:takeMoney(thePlayer, cost) then
   return
end

if not exports.global:canPlayerBuyVehicle(source) then
   return
end

local rx = 0
local ry = 0
   
setElementPosition(thePlayer, px, py, pz)
setPedRotation(thePlayer, prz)

local username = getPlayerName(thePlayer)
local dbid = getElementData(thePlayer, \"dbid\")

local letter1 = string.char(math.random(65,90))
local letter2 = string.char(math.random(65,90))
local plate = letter1 .. letter2 .. math.random(0, 9) .. \" \" .. math.random(1000, 9999)
local locked = 0
local ids = tinyid()

   
local insertid = mysql:query_insert_free(\"INSERT INTO vehicles SET model=\'\" .. mysql:escape_string(id) .. \"\',id=\'\" .. mysql:escape_string(ids) .. \"\', x=\'\" .. mysql:escape_string(x) .. \"\', y=\'\" .. mysql:escape_string(y) .. \"\', z=\'\" .. mysql:escape_string(z) .. \"\', rotx=\'\" .. mysql:escape_string(rx) .. \"\', roty=\'\" .. mysql:escape_string(ry) .. \"\', rotz=\'\" .. mysql:escape_string(rz) .. \"\', color1=\'\" .. mysql:escape_string(col1) .. \"\', color2=\'\" .. mysql:escape_string(col2) .. \"\', faction=\'-1\', owner=\'\" .. mysql:escape_string(dbid) .. \"\', plate=\'\" .. mysql:escape_string(plate) .. \"\', currx=\'\" .. mysql:escape_string(x) .. \"\', curry=\'\" .. mysql:escape_string(y) .. \"\', currz=\'\" .. mysql:escape_string(z) .. \"\', currrx=\'0\', currry=\'0\', currrz=\'\" .. mysql:escape_string(rz) .. \"\', locked=\'\" .. mysql:escape_string(locked) .. \"\'\")
local rent
if (insertid) then
   local veh = call( getResourceFromName( \"vehicle-system\" ), \"createShopVehicle\", insertid, id, x, y, z, 0, 0, rz, plate)
   
   exports[\'anticheat-system\']:changeProtectedElementDataEx(veh, \"fuel\", 100, false)
   exports[\'anticheat-system\']:changeProtectedElementDataEx(veh, \"Impounded\", 0)
   
   setVehicleRespawnPosition(veh, x, y, z, 0, 0, rz)
   exports[\'anticheat-system\']:changeProtectedElementDataEx(veh, \"respawnposition\", {x, y, z, 0, 0, rz}, false)
   setVehicleLocked(veh, false)
   
   setVehicleColor(veh, col1, col2, col1, col2)
   
   setVehicleOverrideLights(veh, 1)
   setVehicleEngineState(veh, false)
   setVehicleFuelTankExplodable(veh, false)
   
   -- make sure it\'s an unique key
   call( getResourceFromName( \"item-system\" ), \"deleteAll\", 3, insertid )
   exports.global:giveItem( thePlayer, 3, insertid )
   
   exports[\'anticheat-system\']:changeProtectedElementDataEx(veh, \"fuel\", 100, false)
   exports[\'anticheat-system\']:changeProtectedElementDataEx(veh, \"engine\", 0, false)
   exports[\'anticheat-system\']:changeProtectedElementDataEx(veh, \"oldx\", x, false)
   exports[\'anticheat-system\']:changeProtectedElementDataEx(veh, \"oldy\", y, false)
   exports[\'anticheat-system\']:changeProtectedElementDataEx(veh, \"oldz\", z, false)
   exports[\'anticheat-system\']:changeProtectedElementDataEx(veh, \"faction\", -1)
   exports[\'anticheat-system\']:changeProtectedElementDataEx(veh, \"owner\", dbid, false)
   exports[\'anticheat-system\']:changeProtectedElementDataEx(veh, \"job\", 0, false)
   if shopID == 4 then
      rent = 1
      exports[\'anticheat-system\']:changeProtectedElementDataEx(veh, \"rent\", 1, false)
      platetext = \"Rented\"..math.random(1,10000)..\"\"
      local query = mysql:query_free(\"UPDATE vehicles SET rent =\'\" .. mysql:escape_string(rent) .. \"\',plate=\'\" .. mysql:escape_string(platetext) .. \"\', rentcost=\'\" .. mysql:escape_string(cost) .. \"\' WHERE id=\'\" .. mysql:escape_string(insertid) .. \"\' LIMIT 1\")
   else
      exports[\'anticheat-system\']:changeProtectedElementDataEx(veh, \"rent\", 0, false)
   end
   exports[\'vehicle-system\']:reloadVehicle(insertid)
   if getVehicleType(veh) == \"Boat\" then
      exports.global:givePlayerAchievement(thePlayer, 27)
   elseif shopID == 4 then
   else
      exports.global:givePlayerAchievement(thePlayer, 17) -- my ride
   end
   
   exports.logs:logMessage(\"[CAR SHOP] \" .. getPlayerName( thePlayer ) .. \" bought car #\" .. insertid .. \" (\" .. getVehicleNameFromModel( id ) .. \")\", 9)
end
end

 
 Itt van a s_carshop_system.lua amiben ez az üzenet van. Valaki ki tudná javítani nekem? Már próbáltam, de nem sikerül.. :/   Válaszokat előre is köszönöm! :)

6
Segítségkérés / kamionos mod
« Dátum: 2017. Július 17. - 21:59:05 »
Sziasztok! Azt szeretném kérdezni tőletek, hogy mta-ra van-e olyasmi kamionos gamemode, mint a régi samp szervereken voltak ilyenek, ha igen akkor valaki tudna adni egy linket róla?
válaszokat köszönöm!

Oldalak: [1]
SimplePortal 2.3.7 © 2008-2024, SimplePortal