ChrisT Posted June 24, 2019 Share Posted June 24, 2019 Sziasztok írtam 1 scriptet ami nametag vagyis ha a karakter fölött mutatja a nevem akkor így "kellene" mutatnia ChrisT (Tulajdonos) De sajnos nem mutatja, mi lehet a baj? De nem jutottam semmire. Valaki nem tud 1-et adni? Link to comment
Moderators Patrick Posted June 24, 2019 Moderators Share Posted June 24, 2019 HUNGARIAN Ezt kell használnod hozzá: https://wiki.multitheftauto.com/wiki/DxDrawTextOnElement Találsz példákat is. Egyébként, ha ehhez a fórumhoz írsz, akkor írj angolul is, vagy használd a magyar fórum részleget. Link: https://forum.multitheftauto.com/forum/141-hungarian-magyar/ Link to comment
ChrisT Posted June 25, 2019 Author Share Posted June 25, 2019 @stPatrick tudsz segíteni ebbe a script-be? function globalMessage(thePlayer, cmd, ...) local message = table.concat ( { ... }, " " ) local name = getPlayerName(thePlayer) outputChatBox("#ed1c24[Tulajdonos]#ed1c24 "..name..": #ed1c24"..message, players, 255, 255, 255, true) end addCommandHandler("asay", globalMessage) function permission (source) if isObjectInACLGroup("user."..getAccountName(getPlayerAccount(source)), aclGetGroup("Staff")) or isObjectInACLGroup("user."..getAccountName(getPlayerAccount(source)), aclGetGroup("Tulajdonos")) then triggerClientEvent(source, "openAdmin", getRootElement()) end end addCommandHandler("openAdmin", permission) azt szeretném ha elküldené a global messages-t akkor hangot adjon ki a hangom megvan, csak hogy rakjam be? Link to comment
Moderators Patrick Posted June 25, 2019 Moderators Share Posted June 25, 2019 -- CLIENT SIDE -- Ezt client oldalra másold be valahova addEvent("playAsaySound", true) addEventHandler("playAsaySound", root, function() playSound("valami.mp3") -- ide a fájlod elérsi útvonalát end) -- SERVER SIDE -- Ezzel tudod meghívni server oldalról triggerClientEvent("playAsaySound", resourceRoot) -- SERVER SIDE -- VALAHOGY íGY function globalMessage(thePlayer, cmd, ...) local message = table.concat ( { ... }, " " ) local name = getPlayerName(thePlayer) outputChatBox("#ed1c24[Tulajdonos]#ed1c24 "..name..": #ed1c24"..message, players, 255, 255, 255, true) triggerClientEvent("playAsaySound", resourceRoot) end addCommandHandler("asay", globalMessage) 1 Link to comment
ChrisT Posted June 26, 2019 Author Share Posted June 26, 2019 @stPatrick Te kész professzor vagy, már vagy 7 scriptembe segítettél, köszönöm szépen Link to comment
Moderators Patrick Posted June 26, 2019 Moderators Share Posted June 26, 2019 11 minutes ago, ChrisT said: @stPatrick Te kész professzor vagy, már vagy 7 scriptembe segítettél, köszönöm szépen Pár 'Thanks' reakciót elfogadok, gyűjtöm őket. 1 Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now