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

Oldalak: [1]
1
Archívum / HLRPG Account system- safeusername/safepassword gond
« Dátum: 2014. Július 24. - 22:19:54 »
szarul van beállítva az sql hozzáférések...

2
Archívum / Hungary Life MTA Mód ,SQL-el !
« Dátum: 2014. Július 19. - 21:27:08 »
Mûködik faszán a mód,, sql eléréseket jól adjtáok meg stb. ésj ó lesz.   de buggos szar

3
Archívum / Scoreboard
« Dátum: 2014. Július 18. - 14:26:13 »
Sziasztok !
Egy jól mûködõ scoreboardot valaki tudna linkelni? Amihez tudok PSelni bottom,top,bgét?:D
Eéõre is kösz. :D

4
Archívum / Villogó gif
« Dátum: 2014. Július 18. - 14:09:51 »
copy gyanús

5
Archívum / Automatikus Gate
« Dátum: 2014. Július 18. - 14:09:01 »
setTimer(closePDSideGarageGate, 5000, 1, thePlayer)

6
Archívum / Segítség pár dologban ((Listázva))
« Dátum: 2014. Július 18. - 14:07:35 »
Ebbe neked a  SENKI nem fog segíteni .. . nincsenek publikálva ezek a scriptek, és ha nem csinálsz valami egyedit csak copyzni akarsz ( seerõl-acerõl) akkor bele se kezdj. ;) nem kéll még egy ugyan olyan szerver..

7
Archívum / NPC
« Dátum: 2014. Július 18. - 14:04:46 »
tudtommal még nem lehetséges.. :S

8
Archívum / Mta account system hiba!
« Dátum: 2014. Július 18. - 14:03:00 »
Az account system nem tudja elérni az SQL-ed..
Rosszul van megadva az SQL elérési út.
hosthoz : localhost -tot írj
a többit tudod.

9
Archívum / MYSQL probléma
« Dátum: 2014. Július 18. - 14:01:12 »
SQL eléréseket nézd meg ha host nál vagy a hosthoz  : localhost -ot írj. és tuti jó.

10
Archívum / MySQL connection hiba!
« Dátum: 2014. Július 18. - 14:00:00 »
Problem solved ! :) Rosszul volt beírva a SQL elérés.

11
Archívum / Csomagszállító meló
« Dátum: 2014. Július 18. - 13:57:04 »
Sziasztok Jó arcok ! :D
Van nekem egy csomagszállító melóm 1 baj van vele ,hogy:
Mikor leadom a csomagokat a piros cpnél akkor nem reseteli a csomagok számát 0ra.
 
   local lockTimer = nil
local truckruns = { }
local truckwage = { }
local truckroute = { }
local truck = { [414] = true ,[456] = true,[482] = true}
function giveTruckingMoney(vehicle)
outputChatBox(\"Kaptál \" .. ( truckwage[vehicle] or 0 ) .. \" FT-t a szállításokért.\", source, 255, 194, 15)
exports.global:giveMoney(source, truckwage[vehicle] or 0)
--if (truckwage[vehicle] > 1500) then
--triggerTruckCheatEvent(thePlayer, 2, truckwage[vehicle])
--end
-- respawn the vehicle
exports[\'anticheat-system\']:changeProtectedElementDataEx(source, \"realinvehicle\", 0, false)
removePedFromVehicle(source, vehicle)
respawnVehicle(vehicle)
setVehicleLocked(vehicle, false)
setElementVelocity(vehicle,0,0,0)
-- reset runs/wage
truckruns[vehicle] = nil
truckwage[vehicle] = nil
end
addEvent(\"giveTruckingMoney\", true)
addEventHandler(\"giveTruckingMoney\", getRootElement(), giveTruckingMoney)
 
function checkTruckingEnterVehicle(thePlayer, seat)
if getElementData(source, \"owner\") == -2 and getElementData(source, \"faction\") == -1 and seat == 0 and truck[getElementModel(source)] and getElementData(source,\"job\") == 1 and getElementData(thePlayer,\"job\") == 1 then
triggerClientEvent(thePlayer, \"startTruckJob\", thePlayer, truckroute[source] or -1)
if (truckruns[vehicle] ~= nil) and (truckwage[vehicle] > 0) then
   triggerClientEvent(thePlayer, \"spawnFinishMarkerTruckJob\", thePlayer)
end
end
end
addEventHandler(\"onVehicleEnter\", getRootElement(), checkTruckingEnterVehicle)
function startEnterTruck(thePlayer, seat, jacked)
if seat == 0 and truck[getElementModel(source)] and getElementData(thePlayer,\"job\") == 1 and jacked then -- if someone try to jack the driver stop him
if isTimer(lockTimer) then
   killTimer(lockTimer)
   lockTimer = nil
end
setVehicleLocked(source, true)
lockTimer = setTimer(setVehicleLocked, 5000, 1, source, false)
end
end
addEventHandler(\"onVehicleStartEnter\", getRootElement(), startEnterTruck)
function saveDeliveryProgress(vehicle, earned)
if (truckruns[vehicle] == nil) then
truckruns[vehicle] = 0
truckwage[vehicle] = 0
end
truckruns[vehicle] = truckruns[vehicle] + 1
truckwage[vehicle] = truckwage[vehicle] + earned
outputChatBox(\"Befejezted a \" .. truckruns[vehicle] .. \" szállítást.  Fizetséged \" .. earned .. \" FT.\", client, 0, 255, 0)
--if (earned > 60) then
--triggerTruckCheatEvent(client, 1, earned)
--end
if (truckruns[vehicle] == 25) then
outputChatBox(\"#FF9933A transporter raktere üres! Menj vissza a #CC0000raktárba #FF9933elõször.\", client, 0, 0, 0, true)
else
--outputChatBox(\"#FF9933You can now either return to the #CC0000warehouse #FF9933and obtain your wage\", client, 0, 0, 0, true)
--outputChatBox(\"#FF9933or continue onto the next #FFFF00drop off point#FF9933 and increase your wage.\", client, 0, 0, 0, true)
triggerClientEvent( client, \"loadNewCheckpointTruckJob\",  client)
triggerEvent(\"updateGlobalSupplies\", client, math.random(10,20))
end
end
addEvent(\"saveDeliveryProgress\", true)
addEventHandler(\"saveDeliveryProgress\", getRootElement(), saveDeliveryProgress)
function triggerTruckCheatEvent(thePlayer, cheatType, value1)
local cheatStr = \"\"
if (cheatType == 1) then
cheatStr = \"Too much earned on one trucking run, (c:\"..value1..\", max 60)\"
elseif (cheatType == 2) then
cheatStr = \"Too much earned in total. (c:\"..value1..\", max 1500)\"
end
exports.logs:logMessage(\"[saveDeliveryProgress]\".. getPlayerName(thePlayer) .. \" \" .. getPlayerIP(thePlayer) .. \" \".. cheatStr  , 32)
end
function updateNextCheckpoint(vehicle, pointid)
truckroute[vehicle] = pointid
end
addEvent(\"updateNextCheckpoint\", true)
addEventHandler(\"updateNextCheckpoint\", getRootElement(), updateNextCheckpoint)
function restoreTruckingJob()
if getElementData(source, \"job\") == 1 then
triggerClientEvent(source, \"restoreTruckerJob\", source)
end
end
addEventHandler(\"restoreJob\", getRootElement(), restoreTruckingJob)

 
ja meg amit beleírtam kocsikat azzal nem mûködik a mleó miért  ?:S
+ valaki beletudná írni ha leadom a cpbe akkor a kocsit kispawnolja alólam?:D és oda tegye egy helyre majd én megadom a pozíciót. .:\'D

12
Archívum / Interiorból kilépésnél repülés
« Dátum: 2014. Július 18. - 13:54:20 »
szara pozíció amihova dob. y tengelyt nézd meg.

13
Archívum / MySQL connection hiba!
« Dátum: 2014. Július 13. - 17:37:58 »
Sziasztok, feltelepítettem a szerveremen egy módot majd a következõ hibákat kapom :
 
ERROR:*****/connection.lua:55: attempt to call global \'mysql_ping\' (a nil value)

 
Nem értem miért van megnéztem az 55.sort és ez van bele írva:
 
function ping()
if (mysql_ping(MySQLConnection) == false) then     <--- az 55 sor
destroyDatabaseConnection()
connectToDatabase(nil)
if (mysql_ping(MySQLConnection) == false) then
   hl_logsQLError()
   return false
end
return true
end

 
valaki tud segíteni? köszönöm.

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