-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
102 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,102 @@ | ||
ESX = nil | ||
|
||
Citizen.CreateThread(function() | ||
while ESX == nil do | ||
TriggerEvent('esx:getSharedObject', function(obj) ESX = obj end) | ||
Citizen.Wait(0) | ||
end | ||
|
||
while ESX.GetPlayerData().job == nil do | ||
Citizen.Wait(10) | ||
end | ||
|
||
PlayerData = ESX.GetPlayerData() | ||
end) | ||
Citizen.CreateThread(function() | ||
TriggerEvent('chat:addSuggestion', '/do', 'His - soyut anlam belirtmek için emote kullanımı.') | ||
end) | ||
|
||
local nbrDisplaying = 1 | ||
|
||
RegisterCommand('do', function(source, args, raw) | ||
local text = string.sub(raw, 4) | ||
--TriggerServerEvent('3ddo:shareDisplay', '* ' .. text .. ' *') | ||
TriggerServerEvent('3ddo:shareDisplay',' ~s~' .. text) | ||
ESX.TriggerServerCallback('jeux:sex', function(firstname,lastname) | ||
text = '<b>' .. firstname ..' '.. lastname .. '</b> ' .. text | ||
TriggerServerEvent('3ddo:chat',text) | ||
end) | ||
|
||
|
||
end) | ||
|
||
RegisterNetEvent('3ddo:triggerDisplay') | ||
AddEventHandler('3ddo:triggerDisplay', function(text, source) | ||
local offset = 1 + (nbrDisplaying*0.22) | ||
Display(GetPlayerFromServerId(source), text, offset) | ||
end) | ||
RegisterNetEvent('3ddo:chatyaz') | ||
AddEventHandler('3ddo:chatyaz', function(text, source) | ||
chat(GetPlayerFromServerId(source), text) | ||
end) | ||
|
||
function Display(mePlayer, text, offset) | ||
local displaying = true | ||
Citizen.CreateThread(function() | ||
Wait(8000) | ||
displaying = false | ||
end) | ||
|
||
Citizen.CreateThread(function() | ||
nbrDisplaying = nbrDisplaying + 1 | ||
|
||
while displaying do | ||
Wait(0) | ||
local coordsMe = GetEntityCoords(GetPlayerPed(mePlayer), false) | ||
local coords = GetEntityCoords(PlayerPedId(), false) | ||
local dist = Vdist2(coordsMe, coords) | ||
if dist < 500 then | ||
DrawText3D(coordsMe['x'], coordsMe['y'], coordsMe['z']+offset-0.900, text) | ||
end | ||
end | ||
nbrDisplaying = nbrDisplaying - 1 | ||
end) | ||
end | ||
function chat(mePlayer, text) | ||
local coordsMe = GetEntityCoords(GetPlayerPed(mePlayer), false) | ||
local coords = GetEntityCoords(PlayerPedId(), false) | ||
local jeux = Vdist2(coordsMe, coords) | ||
|
||
if jeux < 505 then | ||
|
||
TriggerEvent('chat:addMessage', { | ||
template = '<div class="chat-message do" style="background-color: rgba(101, 164, 46,60%); color:#fff">' .. text .. '</div>', | ||
multiline = true, | ||
args = { text} | ||
}) | ||
|
||
end | ||
end | ||
function DrawText3D(x,y,z, text) | ||
local onScreen, _x, _y = World3dToScreen2d(x, y, z) | ||
local p = GetGameplayCamCoords() | ||
local distance = GetDistanceBetweenCoords(p.x, p.y, p.z, x, y, z, 1) | ||
local scale = (1 / distance) * 2 | ||
local fov = (1 / GetGameplayCamFov()) * 350 | ||
local scale = scale * fov | ||
if onScreen then | ||
SetTextScale(0.50, 0.50) | ||
SetTextFont(0) | ||
SetTextProportional(1) | ||
|
||
SetTextColour(58, 146, 127, 255) | ||
BeginTextCommandDisplayText("STRING") | ||
SetTextCentre(true) | ||
AddTextComponentSubstringPlayerName(text) | ||
ClearDrawOrigin() | ||
|
||
DrawText(_x,_y) | ||
--local factor = (string.len(text)) / 370 | ||
--DrawRect(_x,_y+0.0125, 0.015+ factor, 0.03, 0, 0, 0, 155) | ||
end | ||
end |