-
Posts
913 -
Joined
-
Last visited
-
Days Won
61
Everything posted by Shady1
-
Merhaba türk topluluğu, sizlere kendi sunucumu tanıtmak istiyorum, sunucumda birçok özellik vardır sunucuda aktif olduğunuz sürece oyunu seveceksiniz ve oyundan keyif alacaksınız buna imzamı atarım, çünkü TWD modu olarak kurdum TWD deki birçok karakterin skinleri ve arabaları vardır, özellikle bir çok yeni etkinlikler ekledim, sizleride sunucuma bekliyorum,sizlere discord ve mta sunucu ip adresimi paylaşıyorum : Discord : https://discord.gg/DeK2yS44PM Mta Server ip : mtasa://91.134.166.76:22013 - Item Shop (eşya satın alma paneli) - Item Sell System (eşya satış paneli (bu sayede para kazanabilirsiniz.)) - Advanced group system (gelişmiş klan sistemi) - Missions (etkinlikler) - Vehicles of all types (bütün arabalar mevcut) - Smart Zombies (bir kaç zombi sistemi normal/zor) - NPC Bandit Groups (NPC bandit zor modlu zombiler) - CCTV (kamera sistemi, üslerde bulunabiliyor) - Bases (üsler) - Lobby (lobi sistemi bir çok etkinlik vardır) - Derby - Race Mode - all databases available (eski oyuncuları verileri hala elimizde) - old Accounts available - Shop Token (para birimimiz) - Chase Event. (Araba kaçırma etkinliğimiz.) - Special Island Map (gizli ada sistemi) - Rank System (rütbe sistemi) - Optimization VIP Membership (gelişmiş ve özel vip sistemi) - Hunt Event (viplere özel sistem) - The Walking Dead Mods&Skins (%50 TWD modelleri) - +500 Vehicles (500 den fazla araba mevcut) - 2xZombieArea (SF'de gizli bölüm 2 kat zombie yaratıyor ve bunlar zor zombiler) - NameColors(Rank) (rütbene göre renk sistemi) - Interiors(LVPD,LSPD,SFPD etc....) (iç mekanlar mevcuttur içeride özel eşyalar bulabilirsiniz, detaylar discord suncumuz'da)
-
very nice video, i like it
- 1 reply
-
- 1
-
-
Mta.Castiel If there is a different issue, please open a new topic, I can help you. good luck
-
[ENGLISH] [W.I.P] 6 MonthZ In - Zombie Apocalypse Roleplay
Shady1 replied to TMTMTL's topic in Servers to play on
good luck dude -
hi @MTA.Castiel, i prepared some code for you, let me know if i could help. local isGodMode = getElementData(source, "godmode.active") if attacker and getElementType(attacker) == "vehicle" and isGodMode and damage_causing == 49 then local player = getVehicleOccupant(attacker) if(player and getElementType(player) == "player") then -- if he is not himself if(player ~= source) then cancelEvent() end end end Try this code.
-
you can use getTimestamp() function to find previous day and current day this will return instant timestamp in seconds. https://wiki.multitheftauto.com/wiki/GetTimestamp Since 1 day is 86400 seconds, you will subtract this from the present addCommandHandler("times", function() local time = getTimestamp() local beforeDay = time - 86400 outputDebugString("before day:"..beforeDay) outputDebugString("now: "..time) end) this way you can access previous time and current time i'm not sure if this is what you want
-
dude i need to see what you want to do and your codes tell me this properly, i can help
-
If there is another topic, you can open a new topic, I am ready to help 24/7. fun games
-
hi ๖ۣۜζ͜͡RapGod, i want to help you with this i will give you some code you should try this. function toggleWindow() if(guiGetVisible(panelWindow) == false) then guiSetVisible(panelWindow, true) showCursor(true) else guiSetVisible(panelWindow, false) showCursor(false) end end bindKey("o", "down", toggleWindow) You can check if the panel is visible with guiGetVisible() no variable needed
-
I'm too late to write this message but happy birthday anyway I will stay more interactive with the mta forum site from now on.
-
I recommend it, it's a really nice project, llYAMA Well done.
-
hello MTA community, I have a question, MTA background image change would be nice
-
I like the system, but it may not be preferred in terms of price, if you can consider a price reduction, maybe a few people can evaluate it
-
https://imgur.com/a/wPgRbqr
-
Nice work, I wish you continued success.
-
you can thank me for helping @Polak0
-
Hello Polak0,Unfortunately, you cannot create a rideable vehicle on the server side at the moment, but you can do it on the client side. local id_sultan addEventHandler("onClientResourceStart", resourceRoot, function() id_sultan = engineRequestModel("vehicle", 411) local txd = engineLoadTXD("sultan.txd") engineImportTXD(txd, id_sultan) local dff = engineLoadDFF("sultan.dff") engineReplaceModel(dff, id_sultan) outputDebugString("Custom sultan id: "..id_sultan) end ) addCommandHandler ("sultan", function () triggerServerEvent("requestCreateCustomSultan", root, id_sultan) end) addEvent("createCustomSultan", true) addEventHandler("createCustomSultan", root, function() createVehicle(id_sultan, 0, 0, 3) end ) this is sample code. server : addEvent("requestCreateCustomSultan", true) addEventHandler("requestCreateCustomSultan", root, function() triggerClientEvent(root, "createCustomSultan", root) end )
-
This is not the script request section, you have to do it yourself, if there is an error, let us know,we can fix your file.
-
Hello Neffax,what you wanna do?
-
@LeonardoWilliams guiGetText(v.edit) Try.
-
there is a problem with the file links
-
use createPed to create pad use setElementInterior and setElementDimension to set pad interior and dimension local thePed = createPed(0, 0, 0, 0) setElementInterior(thePed, 3) setElementDimension(thePed, 44) this code creates a pad with coordinates 0, 0, 0 and makes interior 3 and dimension 44 If you did this from the map editor, make sure the pad's interior is 3 and its dimension is 44 now that's all i can help you, you can do the rest.
-
then you should make interior and dimension the same,I can help better if you post the full code here,do as i say first, if still problem, send whole code setElementInterior and setElementDimension
