[YARDIM] Admin Panelde Hata Alıyorum

0 Üye ve 1 Ziyaretçi konuyu incelemekte.

Çevrimdışı P-reX

  • Yeni Üye
  • *
    • İleti: 8
: 09 Nisan 2018, 21:25:06
Merhaba beyler,
Serverimde admın panel debug hatası alıyorumda yardımcı olursanız sevinirim.



admin_server.lua'yı atamıyorum. Çünkü 20,000 karakteri geçiyor.

Linki görebilmek için Kayıt olun yada Giriş yapın.
« Son Düzenleme: 10 Nisan 2018, 19:58:43 Gönderen: Narkoz »
 


MTASATURK

[YARDIM] Admin Panelde Hata Alıyorum
« : 09 Nisan 2018, 21:25:06 »

Çevrimdışı TypeR

  • Yeni Üye
  • *
    • İleti: 78
Yanıtla #1 : 09 Nisan 2018, 22:49:06
.
« Son Düzenleme: 05 Haziran 2019, 02:44:14 Gönderen: TypeR »
 


Çevrimdışı shephard^

  • Uzman Üye
  • *
    • İleti: 776
  • decay.
Yanıtla #2 : 09 Nisan 2018, 22:51:33
Linki görebilmek için Kayıt olun yada Giriş yapın.
Sperman Scripti
 


Çevrimdışı TypeR

  • Yeni Üye
  • *
    • İleti: 78
Yanıtla #3 : 09 Nisan 2018, 22:55:24
.
« Son Düzenleme: 05 Haziran 2019, 02:44:18 Gönderen: TypeR »
 


Çevrimdışı P-reX

  • Yeni Üye
  • *
    • İleti: 8
Yanıtla #4 : 10 Nisan 2018, 13:50:50
Hocam atarsaniz sevinirim. Tesekkurler.
 


Çevrimdışı TypeR

  • Yeni Üye
  • *
    • İleti: 78
Yanıtla #5 : 10 Nisan 2018, 14:09:43
.
« Son Düzenleme: 05 Haziran 2019, 02:44:29 Gönderen: TypeR »
 


MTASATURK

Ynt: [YARDIM] Admin panelde hata alıyorum
« Yanıtla #5 : 10 Nisan 2018, 14:09:43 »

Çevrimdışı P-reX

  • Yeni Üye
  • *
    • İleti: 8
Yanıtla #6 : 10 Nisan 2018, 21:01:42
Linki görebilmek için Kayıt olun yada Giriş yapın.
Bu olması lazım, değilse de diğerini atarım.

Linki görebilmek için Kayıt olun yada Giriş yapın.

Teşekkürler hocam.

Mesaj Birleştirildi: 10 Nisan 2018, 22:43:44
Linki görebilmek için Kayıt olun yada Giriş yapın.
Bu olması lazım, değilse de diğerini atarım.

Linki görebilmek için Kayıt olun yada Giriş yapın.

Hocam atmış olduğunuz scriptte debug hatası varda cozebılır mısınız acaba ?

« Son Düzenleme: 10 Nisan 2018, 22:43:44 Gönderen: bofer2561 »
 


Çevrimdışı ByCash

  • Admin
  • *
    • İleti: 986
Yanıtla #7 : 12 Nisan 2018, 17:10:34
Denermisin?
server-side
Kod: lua
-- Copyright (c) 2017, Alberto Alonso
--
-- All rights reserved.
--
-- Redistribution and use in source and binary forms, with or without modification,
-- are permitted provided that the following conditions are met:
--
--     * Redistributions of source code must retain the above copyright notice, this
--       list of conditions and the following disclaimer.
--     * Redistributions in binary form must reproduce the above copyright notice, this
--       list of conditions and the following disclaimer in the documentation and/or other
--       materials provided with the distribution.
--     * Neither the name of the superman script nor the names of its contributors may be used
--       to endorse or promote products derived from this software without specific prior
--       written permission.
--
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
-- CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
-- EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
-- PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
local Superman = {}

-- Static global values
local rootElement = getRootElement()
local thisResource = getThisResource()

local allowedACL = -- Modify which groups of staff/ACL's can use the Superman script (copy and paste new line as below in the table to add more ACL names)
{
[aclGetGroup("Kurucu")] = true,
[aclGetGroup("Yonetici")] = true,
 [aclGetGroup("Admin")]
= true, }

-- Resource events
addEvent("superman:start", true)
addEvent("superman:stop", true)
addEvent("superman:checkRight", true)

--
-- Start/stop functions
--

function Superman.Start()
  local self = Superman

  addEventHandler("superman:start", rootElement, self.clientStart)
  addEventHandler("superman:stop", rootElement, self.clientStop)
  addEventHandler("onPlayerVehicleEnter",rootElement,self.enterVehicle)
  addEventHandler("onPlayerJoin",rootElement,self.updateRight)
  addEventHandler("onPlayerLogin",rootElement,self.updateRight)
  addEventHandler("onPlayerLogout",rootElement,self.updateRight)
  addEventHandler("superman:checkRight",rootElement,self.updateRight)

end
addEventHandler("onResourceStart", getResourceRootElement(thisResource), Superman.Start, false)

function Superman.clientStart()
  setElementData(client, "superman:flying", true)
end

function Superman.clientStop()
  setElementData(client, "superman:flying", false)
end

-- Fix for players glitching other players' vehicles by warping into them while superman is active, causing them to flinch into air and get stuck.
function Superman.enterVehicle()
if getElementData(source,"superman:flying") or getElementData(source,"superman:takingOff") then
removePedFromVehicle(source)
local x,y,z = getElementPosition(source)
setElementPosition(source,x,y,z)
end
end

function Superman.updateRight()

if client and source~=client then return end

local isAllowed = false

for group,_ in pairs(allowedACL) do
for _,p in ipairs(getElementsByType("player")) do
local account = getPlayerAccount(p)
local name = getAccountName(account)
if isObjectInACLGroup("user."..name,group) then
isAllowed=true
break
end
end
end

triggerClientEvent(source,"superman:updateRight",source,isAllowed)

end