Ü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 - kundlam

Oldalak: 1 ... 15 16 [17] 18 19 ... 26
241
Archívum / Gyorsan kéne a segítségetek - Sok Benzines NPC
« Dátum: 2014. július 06. - 15:13:03 »
Nagyon kéne a segítség.
Szerómon feljött egy gyerek és telefloodolta a mapet benzines npcvel. Holtudom törölni?

242
Archívum / ZeroMTA - Kezdőpénz és pénz mentés
« Dátum: 2014. július 05. - 17:48:36 »
Nem is ezt mondtam :D

243
Archívum / ZeroMTA - Kezdőpénz és pénz mentés
« Dátum: 2014. július 05. - 11:08:47 »
Nem nyitottam. Otthoni tesztelgetés -.-\"
Honnan a rákból nyaltad ki hogy szervert nyitottam? hova írtam?
Meg első HÁZI PRIVÁT szerveremnél mindent rázzak a kis újamból? Azért regisztráltam fel az mtaforum.net-re hogy megtanuljak lua nyelven scriptelni.

244
Archívum / Betöltés hiba
« Dátum: 2014. július 05. - 10:43:42 »
Zero MTA mód van de nemtudom miért nem indul be.

245
Archívum / ZeroMTA - Kezdőpénz és pénz mentés
« Dátum: 2014. július 05. - 10:41:40 »
Értem. Honnan tudnám letölteni vagy vki eltudná küldeni? Mert megcsinálásra képes nemlennék.

246
Archívum / Betöltés hiba
« Dátum: 2014. július 04. - 18:54:16 »
Zéró

247
Archívum / Betöltés hiba
« Dátum: 2014. július 04. - 17:53:19 »
Szerómon betöltötte eddig a skineket, most beraktam 3 cuccot és nem tölti be őket.
Mi lehet a baja?

248
Archívum / Givelicense -Zero MTA
« Dátum: 2014. július 04. - 17:12:35 »
Töröljem ki az a részt és jólesz?

249
Archívum / ZeroMTA - Kezdőpénz és pénz mentés
« Dátum: 2014. július 04. - 17:10:32 »
Ha nem tévedek akkor ez a rész a kezdőpénz az accountsystemben:
 
      -- number of friends etc
local playercount = getPlayerCount()
local maxplayers = getMaxPlayers()
local percent = math.ceil((playercount/maxplayers)*100)

 
Illetve, lenne egy olyan problémám, hogyha Karakter Váltást nyomok, kijelentkezek vagy resizem a szerót eltűnik a pénz ami van és újra 100forint lesz. Mi lehet a megoldás?

250
Archívum / Garázs létrehozása
« Dátum: 2014. július 03. - 10:56:00 »
Hogytudnám belerakni Zeroba hogy az elevatoron betudjanak menni a kocsik is?

251
Archívum / ZeroMTA halál bug
« Dátum: 2014. július 03. - 07:32:19 »
Azaz? Mit tegyek?

252
Archívum / Givelicense -Zero MTA
« Dátum: 2014. július 03. - 07:22:40 »
Nekem máshogy néz ki ez a dolog.
 

function givePlayerLicense(thePlayer, commandName, targetPlayerName, licenseType)
local logged = getElementData(thePlayer, \"loggedin\")
if (logged==1) then
local theTeam = getPlayerTeam(thePlayer)
local factionType = getElementData(theTeam, \"type\")
if (factionType==3) then
      if not targetPlayerName or not (licenseType and (licenseType == \"1\" or licenseType == \"2\")) then
         outputChatBox(\"Példa: /\" .. commandName .. \" [NévRészlet] [Típus]\", thePlayer, 255, 194, 14)
         outputChatBox(\"Típus 1 = Jogosítvány\", thePlayer, 255, 194, 14)
         outputChatBox(\"Típus 2 = Fegyverengedély\", thePlayer, 255, 194, 14)
      else
         local targetPlayer, targetPlayerName = exports.global:findPlayerByPartialNick(thePlayer, targetPlayerName)
         if targetPlayer then
            local logged = getElementData(targetPlayer, \"loggedin\")
price = 1000000
            if (logged==0) then
               outputChatBox(\"A játékos nincs bejelentkezve.\", thePlayer, 255, 0, 0)
            elseif (logged==1) then
               local licenseTypeOutput = licenseType == \"1\" and \"Jogosítvány\" or \"fegyver\"
               licenseType = licenseType == \"1\" and \"car\" or \"gun\"
               if getElementData(targetPlayer, \"license.\"..licenseType) == 1 then
                  outputChatBox(getPlayerName(thePlayer)..\"-nak már van \"..licenseTypeOutput..\" engedélye.\", thePlayer, 255, 255, 0)
               else
local money = exports.global:getMoney(targetPlayer)
local bankmoney = getElementData(targetPlayer, \"bankmoney\")
if money + bankmoney < price then
outputChatBox(\"Játékosnak nincs elég pénze.\", thePlayer, 255, 0, 0)
return
else
local takeFromCash = math.min( money, price )
local takeFromBank = price - takeFromCash
exports.global:takeMoney(targetPlayer, takeFromCash)
if takeFromBank > 0 then
exports[\'anticheat-system\']:changeProtectedElementDataEx(targetPlayer, \"bankmoney\", bankmoney - takeFromBank)
end
exports.global:giveMoney( getTeamFromName(\"Országos Rendőr Fő-kapitányság\"), price + 50000 )
                  if (licenseType == \"gun\") then
                        exports[\'anticheat-system\']:changeProtectedElementDataEx(targetPlayer, \"license.\"..licenseType, 1)
                        mysql:query_free(\"UPDATE characters SET \"..mysql:escape_string(licenseType)..\"_license=\'1\' WHERE id = \"..mysql:escape_string(getElementData(targetPlayer, \"dbid\"))..\" LIMIT 1\")
                        outputChatBox(\"Játékos \"..targetPlayerName..\" kapott egy \"..licenseTypeOutput..\" engedélyt.\", thePlayer, 0, 255, 0)
                        outputChatBox(\"\"..getPlayerName(thePlayer):gsub(\"_\",\" \")..\" adott neked \"..licenseTypeOutput..\" engedélyt.\", targetPlayer, 0, 255, 0)
                        exports.global:SendMessageToTeam(\"Országos Rendőr Fő-kapitányság\",\"Játékos \"..targetPlayerName..\" kapott egy \"..licenseTypeOutput..\" engedélyt. \"..getPlayerName(thePlayer):gsub(\"_\",\" \")..\" által.\", 255, 124, 14)
                        exports.logs:logMessage(\"[/GIVELICENSE] \" .. getElementData(thePlayer, \"gameaccountusername\") .. \"/\".. getPlayerName(thePlayer) ..\" gave \".. targetPlayerName ..\" the following license:\"..licenseTypeOutput, 4)
                  else
                     exports[\'anticheat-system\']:changeProtectedElementDataEx(targetPlayer, \"license.\"..licenseType, 1)
                     mysql:query_free(\"UPDATE characters SET \"..mysql:escape_string(licenseType)..\"_license=\'1\' WHERE id = \"..mysql:escape_string(getElementData(targetPlayer, \"dbid\"))..\" LIMIT 1\")
                     outputChatBox(\"Játékos \"..targetPlayerName..\" kapott egy \"..licenseTypeOutput..\" engedélyt.\", thePlayer, 0, 255, 0)
                     outputChatBox(\"\"..getPlayerName(thePlayer):gsub(\"_\",\" \")..\" adott neked \"..licenseTypeOutput..\" engedélyt.\", targetPlayer, 0, 255, 0)
                     exports.global:SendMessageToTeam(\"Országos Rendőr Fő-kapitányság\",\"Játékos \"..targetPlayerName..\" kapott egy \"..licenseTypeOutput..\" engedélyt. \"..getPlayerName(thePlayer):gsub(\"_\",\" \")..\" által.\", 255, 124, 14)
                     exports.logs:logMessage(\"[/GIVELICENSE] \" .. getElementData(thePlayer, \"gameaccountusername\") .. \"/\".. getPlayerName(thePlayer) ..\" gave \".. targetPlayerName ..\" the following license:\"..licenseTypeOutput, 4)
                  end
end
               end
            end
         end
      end
else
   outputChatBox(\" Csak rendőrségnek! \", thePlayer, 255,0,0)
end
end
end
addCommandHandler(\"givelicense\", givePlayerLicense)

253
Archívum / Garázs létrehozása
« Dátum: 2014. július 03. - 07:20:29 »
Értem, és nem ismersz valami faszát?

254
Archívum / ZeroMTA halál bug
« Dátum: 2014. július 02. - 18:53:41 »
Haverom meg az én karakterem is meghalt, és nem éledt újra. Resiztem a szervert, sethpra immunis a karakter, bury parancsra is szintén és nem éled újra. Aztírja respawn de fehér a képernyő és nem tesz le. Meg ki is írja hogy elvesztetted az eszméletetedet de nem respawnol. Néha van csak ez a bug. 2 karakter bugolt be eddig.
Mi lehet a megoldás?

255
Archívum / Givelicense -Zero MTA
« Dátum: 2014. július 02. - 17:24:54 »
Micsodát? Nemértem.
Nekem az kell hogy adminként is tudjak givelicense-lni.

Oldalak: 1 ... 15 16 [17] 18 19 ... 26
SimplePortal 2.3.7 © 2008-2024, SimplePortal