Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 24/01/23 in all areas

  1. 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
    5 points
  2. hello, welcome to forum,You can use getLocalPlayer() only on the client side, if you want to reach the player, use the word client. This is the player on which the event is run. --serverside: addEvent("eventNameHere", true) addEventHandler("eventNameHere", root, function() --use client word here --example: givePlayerMoney(client, 1000) <-- giving 1000 to player end ) --clientside. triggerServerEvent("eventNameHere", localPlayer)
    1 point
  3. @JeViCo Just wondering if cutting the process in smaller parts would give you the same effect (you never know): local width, height = dxGetPixelsSize ( rawData ) local rawDataTex = dxCreateTexture(width, height) dxSetTexturePixels (rawDataTex, rawData)
    1 point
  4. O terceiro parâmetro representa o jogador que está tendo o veículo roubado. Se ele existe, então cancela a função. Se não existe, então entra no veículo normalmente. addEventHandler ("onVehicleStartEnter", root, function (thePlayer, seat, jacked) if isElement(jacked) then outputChatBox("Você não pode roubar o veículo de alguém.", thePlayer, 255, 150, 0) cancelEvent() end end) Obs: Ele só vai cancelar se for roubar o motorista pra dirigir o veículo dele. Se o veículo tiver passageiro mas não tiver motorista, vai entrar normalmente. Se o jogador for entrar como passageiro, também vai entrar normalmente mesmo se já tiver motorista.
    1 point
×
×
  • Create New...