iiv03 Posted April 29, 2019 Share Posted April 29, 2019 (edited) Hey I have question about edit gamemode race thes i mean how i can do that? and my edit like very stupid in final got message winner players like Winner: NamePlayer but i want to do 3 message win like Example: ---------------------------------------------------------------------------------------------- 1st: Nickname 2nd: Nickname 3rd: Nickname ---------------------------------------------------------------------------------------------- and i test code like these i know code have mistake but how i add 2nd and 3rd? Code: function winnerMessenger ( text, playerName) win.text = text win.name = playerName win.name2 = playerName win.name3 = playerName removeEventHandler("onClientRender",root,winMsg) addEventHandler("onClientRender",root,winMsg) race.mapInfo.infos = {} end addEvent("winnerMessage",true) addEventHandler("winnerMessage",getRootElement(),winnerMessenger) function winMsg() win.pro2 = win.pro2 + 0.005 race.alpha = interpolateBetween(race.alpha,0,0,0,0,0,win.pro2,"Linear") win.pro = win.pro + 0.01 x1, x2, win.alpha = interpolateBetween(-s,s,win.alpha,0,0,255,win.pro,"Linear") local alpha = win.alpha/255 fadeCamera( false, 4, 0, 0, 0) if not getElementData(localPlayer,"login") then return end dxDrawText(win.name, 564*sx, 341*sy, 717*sx, 380*sy, tocolor(255, 255, 255, 255), 1.00, "default-bold", "center", "top", false, false, false, true) dxDrawText(win.name2, 352*sx, 292*sy, 505*sx, 331*sy, tocolor(255, 255, 255, 255), 1.00, "default-bold", "center", "top", false, false, false, true) dxDrawText(win.name3, 773*sx, 292*sy, 926*sx, 331*sy, tocolor(255, 255, 255, 255), 1.00, "default-bold", "center", "top", false, false, false, true) end function remWin () win.text = "" win.name = "" win.name2 = "" win.name3 = "" removeEventHandler("onClientRender",root,winMsg) win.pro = 0 win.pro2 = 0 win.alpha = 0 end Edited April 29, 2019 by liwahadri Link to comment
SaNoR Posted April 29, 2019 Share Posted April 29, 2019 Use a multiline string. win.text = [[ 1st: Nickname 123 2nd: Nickname 13123 3nd: Nickname 141523 ]] 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