Yurigarga
Members-
Posts
70 -
Joined
-
Last visited
-
Days Won
1
Yurigarga last won the day on November 15 2023
Yurigarga had the most liked content!
Recent Profile Visitors
1,217 profile views
Yurigarga's Achievements
Punk-@ss B*tch (12/54)
1
Reputation
-
CPU usage statistics of mta after 10 minutes
-
CPU usage statistics when mta sa is on: CPU usage statistics with mta sa turned off: Can this method be used as a solution? https://github.com/multitheftauto/mtasa-blue/issues/2856 Even though I'm not on any server, when I start the client, GTASA and my CPU get into a huge battle for 10 minutes. When I join a server without waiting for this war to end, the game becomes unplayable and CPU usage never drops to normal levels. Could you consider updating the launcher? Can't you reduce CPU usage while the game is running or in the launcher menu? This game is a game preferred by players with low system requirements, and in my opinion, its most important purpose is to be at a level that can meet the demands of these players.
-
thisdp reacted to a post in a topic:
[HELP] dgsComboBoxGetItemData
-
I encountered this error because I was using the old version of the DGS script. solved
-
DGS = exports.dgs function clientsideResourceStart () local numberList = DGS:dgsCreateComboBox ( 10,270,150,30,"test",false ) local item = DGS:dgsComboBoxAddItem ( numberList ) local myItem = DGS:dgsComboBoxSetItemText ( numberList, item, tostring( math.random(0, 10) ^ 100 ) ) DGS:dgsComboBoxSetItemData( numberList, item, "Test" ) local myItemData = DGS:dgsComboBoxGetItemData( numberList, item ) outputDebugString ( myItemData ) end addEventHandler ( "onClientResourceStart", resourceRoot, clientsideResourceStart ) c.lua:7 call: failed to call 'dgs:dgsComboBoxGetItemData' [string"?"] I'm about to go crazy. Why does it give an error???? WHYYYYY!!!!!?????????
-
Yurigarga reacted to a post in a topic:
Lua table, server and client?
-
Yurigarga reacted to a post in a topic:
3D Glitch Effect Help
-
Yurigarga reacted to a post in a topic:
OSWS - The new MTA community water shader project
-
Yurigarga reacted to a post in a topic:
OSWS - The new MTA community water shader project
-
Yurigarga reacted to a post in a topic:
DFF&TXD A new locking method
-
Yurigarga started following Dutchman101
-
I needed help urgently and accidentally tagged the Turkish moderator. Came and banned me. This is not the first ban shot. He had previously unfairly banned me from Discord. Your Turkish moderator is not using his authority correctly. He forbids me when we argue with his close friends. He does nothing to his friend who cursed me. Discord ban has not lifted for 1 month. Please help me.. Discord account: 'App#1903
-
no none of these are my problem. I am the new owner of this server. The former owner spammed the server list and got a penalty. scoundrel ... Please have someone in charge help.
-
Help me please server name : new gaming server ip : mtasa://217.182.178.164:22003
-
Error 1-292. line ====== Bad argument @ 'engineApplyShaderToWorldTexture' [Expected material at argument 1 ,got nill]2-293.line ======Bad argument @ 'dxSetShaderValue' [Expected material at argumenr 1.gotnill] function Nisangah3Aktif() engineApplyShaderToWorldTexture(shader, "siteM16") --292 dxSetShaderValue(shader, "gTexture", dxCreateTexture("dosyalar/resim/nisangah3.png"))--293 _outputChatBox ( "#00ff00Nişangah Değiştirildi", 255, 0, 0, true ) local file = xmlLoadFile("ayarlar.xml") if file then local ayar7child = xmlFindChild ( file, "nisangah", 0 ) xmlNodeSetValue (ayar7child, "3") end xmlSaveFile(file) end What should ı do ?
-
-- LEVEL -- Top3 = {} function getPlayersSortByaData() local CreatTop = executeSQLQuery( "SELECT * FROM SHLevel ORDER BY level DESC LIMIT 30" ) local Top = {} local level = tonumber ( CreatTop[i].level ) or 0 -- attempt to convert to number or return a 0 local experience = tonumber ( getAccountData ( getAccount(CreatTop[i].hesap_adi), 'experience' ) ) or 0 -- attempt to convert to a number or return a 0 table.insert (Top, { Account = getAccountData ( getAccount ( CreatTop[i].hesap_adi ), "nickname" ) or CreatTop[i].nickname , aScore = CreatTop[i].level or 1 , aTecrube = level + ( experience / 100000 ) -- add them together } ) end table.remove(Top3) Top3 = {} if #CreatTop >0 then table.sort(Top, function(a,b) return (tonumber(a.aTecrube)or 0) > (tonumber(b.aTecrube)or 0) end) for k, data in ipairs(Top) do table.insert(Top3,{name = data.Account,score = data.aScore, sira = k}) if k == 30 then table.remove(Top) break end end end getPlayersSortByaData() addEvent("getTop2", true) addEventHandler("getTop2", root,function() triggerClientEvent(source, "SetData", source, Top3) end) [2018-07-25 09:58:28] ERROR: [gameplay]/SH-Freeroam/fr_server.lua:595: attempt to get length of global 'CreatTop' (a nil value) 595 line ======== if #CreatTop >0 then Please Help me what should I do. Please solve problem?
-
2018-07-25 09:58:28] ERROR: [gameplay]/SH-Freeroam/fr_server.lua:595: attempt to get length of global 'CreatTop' (a nil value) HELPPPPPPP
-
fr_client.lua:1231:Bad argumant #1 to 'upper' (string expected, got boolean) Line 1231: if ( string.find ( string.upper ( getPlayerName(elem) ), string.upper ( isim ), 1, true ) ) then function updatePlayerBlips() if not g_PlayerData then return end local wnd = isWindowOpen(wndSpawnMap) and wndSpawnMap or wndSetPos local mapControl = getControl(wnd, 'map') for elem,player in pairs(g_PlayerData) do if not player.gui.mapBlip then player.gui.mapBlip = guiCreateStaticImage(0, 0, 9, 9, elem == g_Me and 'dosyalar/resim/localplayerblip.png' or 'dosyalar/resim/playerblip.png', false, mapControl) player.gui.mapLabelShadow = guiCreateLabel(0, 0, 100, 14, player.name:gsub("#%x%x%x%x%x%x",""), false, mapControl) local labelWidth = guiLabelGetTextExtent(player.gui.mapLabelShadow) guiSetSize(player.gui.mapLabelShadow, labelWidth, 14, false) guiSetFont(player.gui.mapLabelShadow, 'default-bold-small') guiLabelSetColor(player.gui.mapLabelShadow, 255, 255, 255) player.gui.mapLabel = guiCreateLabel(0, 0, labelWidth, 14, player.name:gsub("#%x%x%x%x%x%x",""), false, mapControl) guiSetFont(player.gui.mapLabel, 'default-bold-small') for i,name in ipairs({'mapBlip', 'mapLabelShadow'}) do addEventHandler('onClientGUIDoubleClick', player.gui[name], function() if getElementDimension(elem)==0 and getElementData(elem,"Warp")==false then server.warpMe(elem) closeWindow(wnd) else errMsg("Işınlandığın Oyuncu Işınlanma Özelliğini Kapatmış Durumda (/isinlanma)") end end, false ) end end local x, y = getElementPosition(elem) x = math.floor((x + 3000) * g_MapSide / 6000) - 4 y = math.floor((3000 - y) * g_MapSide / 6000) - 4 guiSetPosition(player.gui.mapBlip, x, y, false) guiSetPosition(player.gui.mapLabelShadow, x + 14, y - 4, false) guiSetPosition(player.gui.mapLabel, x + 13, y - 5, false) if getElementDimension(elem)~=0 then guiSetPosition(player.gui.mapBlip, -500, -500, false) guiSetPosition(player.gui.mapLabelShadow, -500, -500, false) guiSetPosition(player.gui.mapLabel, -500, -500, false) end local isim = getControlText(wndSetPos,"isim") if ( string.find ( string.upper ( getPlayerName(elem) ), string.upper ( isim ), 1, true ) ) then else if isim~="Oyuncu Ara.." then guiSetPosition(player.gui.mapBlip, -500, -500, false) guiSetPosition(player.gui.mapLabelShadow, -500, -500, false) guiSetPosition(player.gui.mapLabel, -500, -500, false) end end if getElementData(elem,"Warp")==true then guiLabelSetColor(player.gui.mapLabel, 255, 0, 0) end if getElementData(elem,"Warp")==false then guiLabelSetColor(player.gui.mapLabel, 0, 0, 0) end end end I can not solve this error If you know, show me the solution ?
-
116.string zaman = secoundsToDays ( tonumber ( zaman ) - getRealTime (). timestamp ) ---- Attemp dizesi
-
What Should I DO ?
-
local CafeTable = { deger = 1000000, hesap = getAccount("mercan5"), oyuncu = {} } local cubo = createColCuboid(-1986.4757,168.16043,26.1,26,38,8) function cubo_Enter ( hitElement, matchingDimension ) if getElementType ( hitElement ) == "vehicle" then local occupants = getVehicleOccupants(hitElement) or {} for seat, occupant in pairs(occupants) do if (occupant and getElementType(occupant) == "player") then setElementData(occupant,"Base",true) end end setElementPosition(hitElement,-1992.8588,163.74403,27.539063) else setElementData(hitElement,"Base",true) end end function cubo_Exit ( hitElement, matchingDimension ) if getElementType ( hitElement ) == "vehicle" then local occupants = getVehicleOccupants(hitElement) or {} for seat, occupant in pairs(occupants) do if (occupant and getElementType(occupant) == "player") then setElementData(occupant,"Base",false) end end else setElementData(hitElement,"Base",false) end end addEventHandler ( "onColShapeHit", cubo, cubo_Enter ) addEventHandler ( "onColShapeLeave", cubo, cubo_Exit ) addEventHandler("onResourceStart",resourceRoot,function() end) addCommandHandler("cafetesting00",function() setAccountData(CafeTable.hesap,"Sahip","Satılık") setAccountData(CafeTable.hesap,"Zaman","Bilinmiyor") setAccountData(CafeTable.hesap,"Ciro","Bilinmiyor") end) CafeCol = createColSphere(-1967.8678,196.31677,27.782543, 2) function cafeMenuHit(player) triggerClientEvent (player,"cafeHide",getRootElement(getThisResource())) end addEventHandler("onColShapeHit",CafeCol,cafeMenuHit) function cafeMenuLeave(player) triggerClientEvent (player,"cafeShow",getRootElement(getThisResource())) end addEventHandler("onColShapeLeave",CafeCol,cafeMenuLeave) function CafeMenuAl(isim,fiyat,yuzde) if getPlayerMoney(source) >= tonumber(fiyat) then if not CafeTable.oyuncu[source] then CafeTable.oyuncu[source] = {} CafeTable.oyuncu[source].yuzde = 0 CafeTable.oyuncu[source].durum = false end takePlayerMoney(source,fiyat) outputChatBox("#ffff00"..isim.." #ff7f00Satın Alındı",source,255,0,255,true) CafeTable.oyuncu[source].yuzde = CafeTable.oyuncu[source].yuzde + yuzde if CafeTable.oyuncu[source].yuzde > 99 then if CafeTable.oyuncu[source].durum == false then setPedStat(source, 24, getPedStat(source,24)+42) setElementHealth(source,200) outputChatBox("#ff7f00Tokluk Seviyen %100'e Ulaştığı İçin Canın %10 Arttırıldı",source,255,0,255,true) CafeTable.oyuncu[source].durum = true end end if yuzde == 10 then setPedAnimation ( source, "vending", "vend_drink_p",-1,true) elseif yuzde == 20 or yuzde == 30 then setPedAnimation ( source, "vending", "vend_eat_p",-1,true) end setTimer(setPedAnimation,2000,1,source,false) triggerClientEvent (source,"cafeMenuSatinAlindi",getRootElement(getThisResource()),CafeTable.oyuncu[source].yuzde) local ciro = getAccountData(CafeTable.hesap,"Ciro") if ciro=="Bilinmiyor" then setAccountData(CafeTable.hesap,"Ciro",fiyat) else setAccountData(CafeTable.hesap,"Ciro",ciro+fiyat) end else outputChatBox("Paran Yetersiz",source,255,0,0,true) end end addEvent("CafeMenuAl", true) addEventHandler("CafeMenuAl", getRootElement(getThisResource()),CafeMenuAl) addEventHandler("onPlayerQuit", root, function() if CafeTable.oyuncu[source] then CafeTable.oyuncu[source] = nil end end) cafepickup = createPickup (-1983.0883,176.14133,27.679863, 3, 1274) addEventHandler("onPickupHit", cafepickup, function(player) if getElementType ( player ) ~= "player" then return end cancelEvent() local zaman = getAccountData(CafeTable.hesap,"Zaman") local sahip = getAccountData(CafeTable.hesap,"Sahip") local ciro = getAccountData(CafeTable.hesap,"Ciro") or 0 local sahipmi = getAccountName(getPlayerAccount(player)) if zaman ~= "Bilinmiyor" then zaman = secoundsToDays(tonumber(zaman)-getRealTime().timestamp) end if sahip == sahipmi then triggerClientEvent(player, "CafePanel", getRootElement(getThisResource()),sahip,zaman,ciro,true) else triggerClientEvent(player, "CafePanel", getRootElement(getThisResource()),sahip,zaman,ciro,false) end end) function CafeSatinAl() local sahip = getAccountData(CafeTable.hesap,"Sahip") if sahip == "Satılık" then local para = getPlayerMoney(source) if para >= CafeTable.deger then takePlayerMoney(source,CafeTable.deger) setAccountData(CafeTable.hesap,"Zaman",getRealTime().timestamp+86400*7) setAccountData(CafeTable.hesap,"Sahip",getAccountName(getPlayerAccount(source))) setAccountData(CafeTable.hesap,"Ciro",0) outputChatBox("#ffff00"..getPlayerName(source).." #ff7f00Adlı Oyuncu Cafeyi 1 Haftalığına Kiraladı",root,255,0,255,true) end else outputChatBox("Cafe Daha Önceden Kiralandı",source,255,0,0,true) end end addEvent("CafeSatinAl", true) addEventHandler("CafeSatinAl", getRootElement(getThisResource()),CafeSatinAl) function CafeCiroCek(miktar) local ciro = getAccountData(CafeTable.hesap,"Ciro") local sahip = getAccountData(CafeTable.hesap,"Sahip") local accountname = getAccountName(getPlayerAccount(source)) if ciro~="Bilinmiyor" then if accountname == sahip then if miktar <= ciro then setAccountData(CafeTable.hesap,"Ciro",ciro-miktar) givePlayerMoney(source,miktar) triggerClientEvent(source, "CafePanelGuncelle", getRootElement(getThisResource()),ciro-miktar) end end end end addEvent("CafeCiroCek", true) addEventHandler("CafeCiroCek", getRootElement(getThisResource()),CafeCiroCek) setTimer(function() local zaman = getAccountData(CafeTable.hesap,"Zaman") local sahip = getAccountData(CafeTable.hesap,"Sahip") if sahip ~= "Satılık" then if zaman then if zaman < getRealTime().timestamp then setAccountData(CafeTable.hesap,"Sahip","Satılık") setAccountData(CafeTable.hesap,"Zaman","Bilinmiyor") setAccountData(CafeTable.hesap,"Ciro","Bilinmiyor") outputChatBox("#00ffffCafe Satışa Çıktı Gidip Kiralayabilirsin",root,255,255,0,true) end end end end,15*60000,0) function secoundsToDays(secound) if secound then local value,state if secound >= 86400 then value = math.floor(secound/86400) if secound - (value*86400) > (60*60) then value = value.." gün "..math.floor((secound - (value*86400))/(60*60)).." saat" else value = value.." gün" end state = 1 else value = math.floor(secound/(60*60)).." saat" state = 2 end return value else return false end end Please help
