Jump to content

Search the Community

Showing results for tags 'dayz'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Multi Theft Auto: San Andreas 1.x
    • Support for MTA:SA 1.x
    • User Guides
    • Open Source Contributors
    • Suggestions
    • Ban appeals
  • General MTA
    • News
    • Media
    • Site/Forum/Discord/Mantis/Wiki related
    • MTA Chat
    • Other languages
  • MTA Community
    • Scripting
    • Maps
    • Resources
    • Other Creations & GTA modding
    • Competitive gameplay
    • Servers
  • Other
    • General
    • Multi Theft Auto 0.5r2
    • Third party GTA mods
  • Archive
    • Archived Items
    • Trash

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Member Title


Gang


Location


Occupation


Interests

  1. Handy tool for DayZ servers, very easy to use and neatlooking DayZ Admin Panel. It's completly open sourcefeel free to edit it to your likings but please do notremove original author (me) also credit goes to Supermanaddon creator Ryden, without him this handy tool wouldnot be so cool. Default open bind is OOnce you go in Duty Mod you are invincible and you can fly.==-- To doInventory inspectorSuperAdmin featuresBan List (also unbaning)Report systemSpectate (maybe?)==-- FeaturesDuty Mode, Kick, Ban, Mute, Freeze, Warp,Warp Player To, Set Stats, Change Weather, Kill Player,Spawn Items, Spawn Vehicles, Send Global Message,Fix Car, Destroy Car, Blow Car, See Stats about player. If you find any bug report here or pm me, i'll fix it as soon as possible. Download Link: https://community.multitheftauto.com/index.php?p=resources&s=details&id=14187
  2. Hi, I have a problem with a script currently it accepts an elementdata as its currency. local currency_item = "zombieskilled"; if (guiGridListGetSelectedItem(shop_gui.gridlist[2] ) == -1) then guiSetText(shop_gui.label[4],"Please select an item") guiLabelSetColor (shop_gui.label[4],255,0,0) else if (shop_marker_type == "supply") then local target = localPlayer; local item = guiGridListGetItemText(shop_gui.gridlist[2], guiGridListGetSelectedItem(shop_gui.gridlist[2]),1) local amount,price,itemdata = unpack(guiGridListGetItemData(shop_gui.gridlist[2], guiGridListGetSelectedItem(shop_gui.gridlist[2]),2)) guiLabelSetColor(shop_gui.label[4],255,0,0) if (getElementData(localPlayer, currency_item) >= price) then guiSetText(shop_gui.label[4],"You successfully bought "..item..".") guiLabelSetColor (shop_gui.label[4],0,149,14,255) triggerServerEvent("DayZPH:onClientSuccessBuysItem",localPlayer,target,itemdata,currency_item,amount,price) else guiSetText(shop_gui.label[4],"You don't have enough money (PHP) to buy utilities") end elseif (shop_marker_type == "vehicle") then local target = localPlayer; local vehicleName = guiGridListGetItemText(shop_gui.gridlist[2], guiGridListGetSelectedItem(shop_gui.gridlist[2]),1) local id,engine,rotor,tires,tankparts,scrap,slots,fuel,price = unpack(guiGridListGetItemData(shop_gui.gridlist[2],guiGridListGetSelectedItem(shop_gui.gridlist[2]),1)) local x,y,z,rx,ry,rz = unpack(vehicle_spawn_position) guiLabelSetColor(shop_gui.label[4],255,0,0) if (getElementData(localPlayer,currency_item) >= price) then for i,v in ipairs(getElementsWithinColShape(vehicle_spawn_position_col[shop_marker],"vehicle")) do guiSetText(shop_gui.label[4],"Vehicle spawn area is taken, clear it before buying vehicle.") return end guiSetVisible(shop_gui.window[1],false) showCursor(false) outputChatBox("You successfully bought "..vehicleName..".",0,255,0) triggerServerEvent("DayZPH:onClientSuccessBuysVehicle",localPlayer,target,currency_item,price,x,y,z,rx,ry,rz,id,engine,rotor,tires,tankparts,scrap,slots,fuel) else guiSetText(shop_gui.label[4], "You don't have enough money (PHP) to buy a car") end end end server side function onClientSuccessBuysItem(target,item,currency,amount,price) setElementData(target,item,getElementData(target,item)+amount) setElementData(target,currency,getElementData(target,currency)-price) end addEvent("DayZPH:onClientSuccessBuysItem",true) addEventHandler("DayZPH:onClientSuccessBuysItem",getRootElement(),onClientSuccessBuysItem) addEventHandler("onPlayerLogin",root,function() triggerClientEvent(source,"load_shop",source); end); I tried changing the variable to currency_item = getPlayerMoney(source); but I don't see it working. anything I'm missing? Please assist me
  3. Olá, estou com um problema com um script que atualmente aceita elementdata como moeda. local currency_item = "zombieskilled"; if (guiGridListGetSelectedItem(shop_gui.gridlist[2] ) == -1) then guiSetText(shop_gui.label[4],"Please select an item") guiLabelSetColor (shop_gui.label[4],255,0,0) else if (shop_marker_type == "supply") then local target = localPlayer; local item = guiGridListGetItemText(shop_gui.gridlist[2], guiGridListGetSelectedItem(shop_gui.gridlist[2]),1) local amount,price,itemdata = unpack(guiGridListGetItemData(shop_gui.gridlist[2], guiGridListGetSelectedItem(shop_gui.gridlist[2]),2)) guiLabelSetColor(shop_gui.label[4],255,0,0) if (getElementData(localPlayer, currency_item) >= price) then guiSetText(shop_gui.label[4],"You successfully bought "..item..".") guiLabelSetColor (shop_gui.label[4],0,149,14,255) triggerServerEvent("DayZPH:onClientSuccessBuysItem",localPlayer,target,itemdata,currency_item,amount,price) else guiSetText(shop_gui.label[4],"You don't have enough money (PHP) to buy utilities") end elseif (shop_marker_type == "vehicle") then local target = localPlayer; local vehicleName = guiGridListGetItemText(shop_gui.gridlist[2], guiGridListGetSelectedItem(shop_gui.gridlist[2]),1) local id,engine,rotor,tires,tankparts,scrap,slots,fuel,price = unpack(guiGridListGetItemData(shop_gui.gridlist[2],guiGridListGetSelectedItem(shop_gui.gridlist[2]),1)) local x,y,z,rx,ry,rz = unpack(vehicle_spawn_position) guiLabelSetColor(shop_gui.label[4],255,0,0) if (getElementData(localPlayer,currency_item) >= price) then for i,v in ipairs(getElementsWithinColShape(vehicle_spawn_position_col[shop_marker],"vehicle")) do guiSetText(shop_gui.label[4],"Vehicle spawn area is taken, clear it before buying vehicle.") return end guiSetVisible(shop_gui.window[1],false) showCursor(false) outputChatBox("You successfully bought "..vehicleName..".",0,255,0) triggerServerEvent("DayZPH:onClientSuccessBuysVehicle",localPlayer,target,currency_item,price,x,y,z,rx,ry,rz,id,engine,rotor,tires,tankparts,scrap,slots,fuel) else guiSetText(shop_gui.label[4], "You don't have enough money (PHP) to buy a car") end end end server side function onClientSuccessBuysItem(target,item,currency,amount,price) setElementData(target,item,getElementData(target,item)+amount) setElementData(target,currency,getElementData(target,currency)-price) end addEvent("DayZPH:onClientSuccessBuysItem",true) addEventHandler("DayZPH:onClientSuccessBuysItem",getRootElement(),onClientSuccessBuysItem) addEventHandler("onPlayerLogin",root,function() triggerClientEvent(source,"load_shop",source); end); Eu tentei mudar a variável para currency_item = getPlayerMoney(source); mas não vejo isso funcionando. alguma coisa que estou perdendo? Por favor me ajude veja o código completo client server
  4. Ce este UndeadZ? UndeadZ este un server de DayZ care are ca ambitie de a aduce un survival horror adevarat in romania si mai ales care nu este 'pay to win' in care jucatorii ata cei care au donat cat si cei care nu au facuto sa poata avea sanse egale, in atle cuvinte un server DayZ cum nu ati mai vazut in romania. De ce sa intri pe serverul nostru? Totul este in ROMANA. Inventar nou, cu imagini.(Poza) Resurse originale. Timp scurt de download ~ 100 MB. Loot imbunatatit! Peste 55 de vehicule imprastiate pe harta! Adaugat Bandito; Altele vor urma; Sistem de nivele infinite! arme, bani, costum zombie/clown/criminal plus multe altele; GPS si Harta bine implementate. Fara VIP-uri OP! Vesnicul radar la Area 51 adaptat la DayZ si tradus. Sistem de echipe cu permisiuni 100% functional. Foarte putine spre deloc buguri. Ce poti face pe server? Click dreapta pe 'Aparat Radio' sau 'GPS' pentu a seta un canal. Puteti avea conversatii private daca detineti un Aparat Radio; Va veti putea vedea pe harta cu playeri care nu sunt in echipa voastra daca detineti un GPS folosind o frecventa/un canal privat; '/unbug' te-ai blocat? Foloseste-l! Te replaseaza fara a pierde itemele; Nu merge in combat; Cortul si Gardul de sarma pot fi miscate in pozitia dorita inainte de a le plasa. 'F1' pentru magazin. Bani se obtin facand misiuni, omorand jucatori/zombii sau donand; 'F2' pentru panoul echipei. Vremea se schimba automat la fiecare 30 de minute. 5 vremii diferite; 'O' pentru inventarul cu iteme speciale. Urmeaza sa fie sters iar Obiectele speciale vor fi implementate direct in inventar; Punctul galben impreuna cu ? de pe mapa formeaza un sistem bine implementat de misiuni. Urmeaza sa fie actualizat; 'F7' panoul de craft! Urmeaza sa fie actualizat! 'L' pentu a te strecura printre zombii. Cateva Imagini? IP: mtasa://178.63.13.143:22268 Discord: https://discord.gg/WPezvWD Va asteptam! Credite si multumiri:
  5. GAMEMODE VIRUSZ MTA DAYZ - ENG This is a complete game mode for MTA:SA that includes: - HUD Weapons, Vest, Helmet, Thirst and Hunger - HUD Helmet and Vest - Patent and experience - Exclusive inventory - Various weapons - VIP System - Sync system - Many modified weapons. - Various backpacks. - Crosshairs Panel. - Boss, zombie, bot system. - Patent/level system. - Weapon shot trace system. - Modeled base. - PT/BR Este é um modo de jogo completo para MTA:SA que inclui: - HUD Armas, Colete, Capacete, Sede e Fome - HUD Capacete e Colete - Patente e experiência - Inventário exclusivo - Varias Armas - Sistema VIP - Sistema de Sync - Muitas armas modificadas. - Varias mochilas. - Painel de Miras. - Sistema de boss, zombie, bots. - Sistema de patente / level. - Sistema de traços de tiro das armas. - Base modelada. Shop: Payhip Discord Link: Discord
  6. i wanna activate this F1 menu but idk how to do that in a Dayz MTA Server private on localhost
  7. Balkan DayZ [EUROPE] [REBORN]|LOOTx2|ZM SHOP] IP: 178.63.13.143:22598 Features: Zombie Shop English More Guns Mission System Group System Zombie System Radar u A51 NO LAG
  8. Olá, alguém sabe como posso adicionar um hitmarker que mostra o dano causado e a área atingida, como colete e capacete, igual ao do "Top GTA" no meu servidor de DayZ
  9. Welcome to The Fade2Black Communtiy soon Hello everyone, I'm Shady(Eren) I want to introduce you a new game mode,In this game mode, the GTA:SA map was completely removed and we made a new map instead. Before I talk about the features of the server, I would like to explain our purpose. I got support from many people before making these systems and thanks to their help I got a good system so I have to thank them. As F2B managers, we are growing our staff. What is DayZ: it is a survival game mode, you can find loot in front of houses or in front of ruins and loot them,When you improve yourself, you can fight with other players or zombies and survive,You have to create your own team, your own group, because DayZ is a very difficult game... Contributors : Burak2346 Arfelious Nebla Server features : Airdrop : (Once you have Road Flare loot, use the loot and it will airdrop to your area) BaseBuild : (you should get a lot of loot and you can make a few objects) Craft : (You can make weapons with unnecessary loot and strengthen yourself.) Levels : (When you kill players or zombies you will gain experience points, then your Level will increase. You will have different loot for each Level) Shop : (You can buy a new market panel a lot of loot and gift it to your friends.) NPC : (There are NPCs in designated areas, when you go to these NPCs, they will give you tasks and you will earn gifts in return.) For more information, you can join our Discord page. : Discord https://discord.gg/DeK2yS44PM As the Fade2Black team, I would like to share the images of the new maps with you,After the server is active, we will share in-server screenshots... Server Mods ready : %98 Server Map ready : %100 Server tested : %50
  10. Gamemode: - Levels and experience - Top-gta inventory - Epic skins for all weapons. - Customized stock. - Zombies give experience. - VIP system - Armor system - Military Area 51 - Perfect PvP with no errors. - Reward system to level up. - As you level up, you get new dances and skins. - More than 30 weapons. - First person - Panel of 30 Crosshairs. - 5 different event systems. - More than 1000 zombies distributed on the map with respawn time. - Customization system to save the character. - Start custom session. - Lag-free citywide mapping with lag-free objects. - Customizable login music. - Clean gamemode made from 0 very easy to understand. SYSTEMS: Levels: When killing a zombie, you gain XP. Depending on the level, you will be spawned with different items. As you level up, you can unlock Skins, Emotes. If you're a VIP, you'll unlock better stuff. (Perfect for microtransactions) Zombie: It's a high-quality system that generates zombies with different characteristics at the coordinates you choose. There are civil, military and super fast zombies. You can choose whatever you like. Building System: A building system, where you get materials by cutting down trees with an axe. You can build the base you can imagine. As they can also raidearte to steal your objects. This generates a new gaming experience where players will have to take care of their bases by doing pvp. Loot: The map contains loot in all cities. But there are areas in particular that have more loot. This makes users closer to loot and generate PVP. ADDITIONAL FEATURES: + Exclusive mapping. + Base and raid building system + All scripts fully editable. and decompiled + VIP system BUY HERE: PayHip
  11. [EUROPE][Pro Chile] DayZ StandAlone[INTERNATIONAL] SERVER STATUS : ONLINE SERVER IP : mtasa://79.143.188.114:22003 Everybody is wellcome!! Features: Clothing System On Login Panel English GPS System with code Group System Zombie System Helmet and armor protection International BASES & FREE BASES FOR 5 MEMBERS NO LAG Airdrops 60+ Weapons Staffs: Admin: Exodus Server needs couple moderators. _________________________________________________________________________________________________________________________________________________________________________
  12. - Vest / Helmet System - Several vehicles added. - Configurable Airdrop and Crash system - Complete inventory system - Editable zombie/boss system - Steel Sheet System - Base system - Lightweight and error-free server. - 100% automatic backup system - Global chat system. - Item AntiDupping System - Exclusive shaders Discord - Snaw#1932
  13. MTA SA DAYZ FRAGMOVIE & EDIT https://youtu.be/YtuRLHeSQUE
  14. Website: www.nationz.pl Server IP: play.nationz.pl:20380 Discord: https://discord.gg/N9kVMjP6zu
  15. Strona www: www.nationz.pl Adres IP: play.nationz.pl:20380 Discord: https://discord.gg/N9kVMjP6zu
  16. Sell MTA DayZ Origins Dayz Standalone game server version 0.10.11386. - Suitable for further development - Files no Compiler - Separate Client and Server files for easy viewing (previously not separated). - Database save server with mysql system Price: 8 US Link: Payhip Paypal: [email protected]
  17. first of all hi guys, I want to announce that we need the team for our MTA DayZ server,i have finished many coding and scripts, but i need team mate (Staff/Scripter/Developer) I am alone and looking for a volunteer friend to deal with problems we can have our conversations on discord : Shady1#8980
  18. I started coding the Program in 2005, and in 2013 I installed my first Mta server,There was a server I played with Unknown Clan,There is no connection with that server, I made the same server because I miss that server,If there are any missing, they can come to my server, there may be some problems, I apologize in advance for this, then these problems will be corrected. (I wait for those who know how to code Lua script) ___________________________________________________________ We opened our MTA DayZ server. Features : - Garage. - Airdrop. - Rank. - Area 51 Radar. - Old DayZ Version. - Special Scoreboard. - +20 Clothes. - special vehicle models. - No FPS shortage and what's more... ____________________________________________________________ Rank : ServerAddict : [ Play on the server for a total of 1000 hours ] Survivor : [ Survive one day ] SerialKiller : [ Murder 25 enemy players in a single life ] ZombieKiller : [ Kill 500 Zombies in a single life ] If you have completed the tasks, notify the authorities. _____________________________________________________________ Founder : eoL|ShadY Server Name : MTASA:DayZ | [UK] | The Walking Dead DayZ | PsychosociaL | ZOMBIES | Rank/Airdrop/| Server IP : mtasa://185.255.94.113:22003
  19. The Fade2Black Team ( DayZ ) Server IP ADDRESS : mtasa://91.134.166.76:22013 Hello, I'm here with a New DayZ Mod, I'm Eren, I've been working on MTA DayZ Scripts, and I've been working on my own server for 1 year. To introduce myself, I'm Eren, I've been playing MTA for years and I'm enjoying it, I have dual citizenship (I'm Turkish and German) I'm new to script development and I'm a beginner. Before moving on to the server's features, I would like to make a few remarks,We are trying to open the server in a better quality as a result of really long efforts, I really recommend this server for those who like to play MTA DayZ, please review,Our server is currently in BETA version, we will release it as a FULL Version in a few weeks. DISCORD ADDRESS : discord.me/fade2black / https://discord.gg/DeK2yS44PM You can reach the MTA DayZ IP address via Discord. TeamSpeak3 ADDRESS : If you want, you can log in with a numeric IP address or you can log in by typing the following. (80.253.246.8 / fade2black or f2b) [all versions can login] features of our server : VIP House ( vip members will create their own vip house and can hide their loot indoors. ) VIP features ( VIP members will be able to use their own skins when spawned,VIP members will be able to create motorbikes in exchange for Shop Tokens,When VIP members spawn, some loot is given to them by typing ./viploot ,VIP members can paint their cars with a single command,VIP members are open to the use of the Hunt system, so they can play more enjoyable games with other players...) Chase Mission (Think of a car, you have to protect this car from enemies within certain minutes, if the car is under your control, you will be rewarded when the time is up.) Interiors (you have access to the interiors of some buildings, for example police stations and casinos,there are better loot indoors.) 2x Zombie Area (There are powerful zombies waiting for you in the inner area of the driving school in the SF area,These zombies that are very hard to kill are full of loot,You can easily collect Level/Shop Tokens in this area...) Ranks (Colors assigned to ranks so you can distinguish everyone.) Skills (Skills given to weapons such as the M4 AK, thus allowing for smoother gameplay.) Missions (Big hack in the big ear,The mission to hijack the Rustler plane,war mission on secret islands,Mission to hijack police car in police station.) War Room (Area51) (In the secret room in area 51, you can find the traces of serial killers. (5 or more players killing players). ) Garages (You can buy a garage to store your vehicles,You can use the ./rentgarage command to rent a garage.) CCTV (CCTV in secret areas) Level System War System (Red areas are formed in some selected areas, if you fight in these red areas, Shop Tokens are given to the 1st, 2nd and 3rd players.) AND MORE. A lot of effort has been put into the MTA DayZ server, with the help of some of my friends they help me fix my systems bugs,I thank them here for that. Burak5312 tasty Tekken AngelAlpha MittellBuurman Tails Osama Serius You can be sure that you will not have any trouble logging into our MTA DayZ server, because more optimization studies have been done so that the FPS / Ping values are adjusted, this is a good advantage for low-end computers. My love to our friends Luke and dYak for their donations to our MTA DayZ server.
  20. hi,everyone i looking for a dayz standalone latest version gamemode if someone have dayz style map for sell,contact me
  21. GAMEMODE MIDNIGHT DAYZ - Sistema de Colete / Capacete - Varios veiculos apocalipticos exclusivos - Sistema de evento e suply com mensagem dx - Sistema de inventario completo - Sistema AntiDupping de itens - Icons e debug munitor muito bonito - Sistema de vip com spawn de veiculos ja configurado - Gamemode acompanha varias bases e mapa editado - Sistema de base / portao configurado com o grupo - Servidor leve e sem erros. - Sistema de backup 100% automatico - Sistema de chat global com log no discord - Sistema de zumbis / boos editavel - Shaders exclusivo - Servidor totalmente em portugues - Sistema de loja Sell: Payhip Discord: TeecToy#0277 Email: [email protected]
  22. Hello all. This is another custom map open to the public of the MTA community made by me. It's a new island where players are free to go and explore. Please be aware this map will not come with any resources other than the map itself, draw distance and some custom textures. Feel free to use the map for any gamemode. This map offers the following stuff (Total Objects: 1622): - Airport - Beaches - Bridges - Contruction Area - Dock - Factories - Fire Department - Forested Area - Gas Station - Hospital - Parking Lots - Police Station - Restaurants - Ships - Shopping Area - Skyscrapers - Small Mountain - Stunt Objects - Suburban Area - Traffic Lights, Lampposts - Warehouses VIDEO: SCREENSHOTS: INSTALLATION: 1 - Simly unpack the ZIP file. Open the "resources" folder and copy the "Custom-City-LS" folder to: <MTA installation directory>\server\mods\deathmatch\resources 2 - Connect to your server and type "refresh" in the console window so the server will detect the new resources. 3 - Now in the console again type in: start Custom-City-LS. That's it Note: you can also open it with the map editor. LOCATION: Los Santos X: 2904 Y: -792 Z: 11 CLICK HERE TO DOWNLOAD This map wasn't rushed in any way, I've always tried to deliver high quality maps, also it has been tested for bugs and gameplay. Please do not upload these files on any other site. However, you are welcome to share the link to this site whereever you want. Cheers and have fun! MORE MAPS FOR FREE: [RACE] Reiko's Map-Pack [RACE] RG's Map-Pack [RACE] Custom Racing Circuit Map-Pack
  23. ►Brazil Survival (rust/dayz)◄[ALPHA 1.10]-LVL,BUILD,ZOMBIES,PVP,MISSIONS♦ Base grátis (informações no discord) Discord: http://discord.gg/CT4ZRsY2wG IP: mtasa://51.81.94.231:22003
  24. The old server called one life have reopened and it's ready for players to join and have fun OneLife - Survival DayZ [MTA] What is OneLife? OneLife is an MTA community, We want to offer our players the full fun, which is why we have a dedicated team for each of our projects. However, I'll tell you something about our DayZ server now Dayz Features: The login system: The first thing every player sees from a server is, of course, the login system. To give our players a change, we have added a completely different login system on our server which differs from the other unedited DayZ scripts. The Spawns: You spawn with us in newly added Various Spawns on the map. In the inventory, you will find some start items that may guide you through this difficult time. Money: On our server, you have the opportunity to earn money by killing zombie's and players. Trading: By earning money you also have the opportunity to exchange items and vehicles with players. This is usually done in the safe zone as this is the safest place. The Safezone: If you need peace and quiet from the whole survival, the Safezone is just right for you. There you can relax and just enjoy the peace and quiet. There are actually always players to be found, which, however, can neither shoot nor aim. In Safezone, your survival time and your existing blood do not go up or down Of course, you are safe there from the birth of hell. Custom Map: On our server, we have a lot of own mapping. In addition to the normal "reconstruction work" to a destroyed world. And much more: In addition to the listed features, there are still many more to explore! How can you see it all? Very easily! Trust in us and try your luck in the wilderness between zombies, bandits, animals and heroes! HOW DO YOU REACH US ?: You can only reach our game server with the MTA client The IP is as follows: mtasa: //192.99.197.9: 22013 You can reach our Discord at: discord.gg/EqGhKpD In the end, I thank you for your attention. I hope I see some of you in the game soon.
  25. When I place loot inside the interiors, the loots do not appear, I can't find the codes for it, can you help? function createItemLoot(lootPlace,x,y,z) setElementData(col,"itemloot",true)
×
×
  • Create New...