Xenius Posted September 13, 2021 Posted September 13, 2021 Hello! Yesterday i've finished fontawesome 5.15 icon library for MTA:SA. This scripts allows you to use ~1500 fontawesome icons in MTA:SA with a simple dxDrawText. You can buy here only for 5 dollars! https://payhip.com/b/4u1mk 1
MTA Team Megadreams Posted September 13, 2021 MTA Team Posted September 13, 2021 (edited) Any examples of how this script is used to draw the text onto the screen? Why shouldn't I just load in the fonts myself and then use them? Basically I'd like to know what this script does to make this process easier and why it would be worth the 5 dollars. Nevertheless, good job! Edited September 13, 2021 by Megadreams 1
Xenius Posted September 13, 2021 Author Posted September 13, 2021 1 hour ago, Megadreams said: Any examples of how this script is used to draw the text onto the screen? Why shouldn't I just load in the fonts myself and then use them? Basically I'd like to know what this script does to make this process easier and why it would be worth the 5 dollars. Nevertheless, good job! local sx, sy = guiGetScreenSize() addEventHandler("onClientRender", root, function() local interpolate = interpolateBetween(15, 0, 0, 30, 0, 0, getTickCount() / 2000, "SineCurve") dxDrawText(getIcon("fa-info").." fontawesome is working! Woah! "..getIcon("fa-smile-wink"), sx, sy, 0, 0, tocolor(255, 255, 255), 1, getFont("fontawesome", interpolate), "center", "center") end)
FlyingSpoon Posted September 21, 2021 Posted September 21, 2021 On 13/09/2021 at 17:12, Xenius said: local sx, sy = guiGetScreenSize() addEventHandler("onClientRender", root, function() local interpolate = interpolateBetween(15, 0, 0, 30, 0, 0, getTickCount() / 2000, "SineCurve") dxDrawText(getIcon("fa-info").." fontawesome is working! Woah! "..getIcon("fa-smile-wink"), sx, sy, 0, 0, tocolor(255, 255, 255), 1, getFont("fontawesome", interpolate), "center", "center") end) Nice script but it's not worth $5. It's a really simple script based on unicode. That takes a few seconds to generate. Try maybe decreasing the price or making it open source. Regardless, good job
Xenius Posted October 1, 2021 Author Posted October 1, 2021 On 21/09/2021 at 20:55, FlyingSpoon said: Nice script but it's not worth $5. It's a really simple script based on unicode. That takes a few seconds to generate. Try maybe decreasing the price or making it open source. Regardless, good job Make it if it takes a few seconds. 1
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