Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function tres_d(id, text, x, y, size, white)
- if id%3 ~= 0 then
- return print("El id necesita ser multiplo de 3. Ej: 0, 3, 6 , 9.")
- end
- x = x or 49
- y = y or 50
- size = size or 32
- white = white or false
- if white then
- m_color = "#d9dbdb"
- else
- m_color = "#221F1F"
- end
- ui.addTextArea(id,"<font color='#00FFFF'><font size='"..size.."px'><i><b>"..text,nil,x-1,y,nil,nil,nil,nil,0)
- ui.addTextArea(id+1,"<font color='#FF0000'><font size='"..size.."px'><i><b>"..text,nil,x+5,y,nil,nil,nil,nil,0)
- ui.addTextArea(id+2,"<font color='"..m_color.."'><font size='"..size.."px'><i><b>"..text,nil,x+2,y,nil,nil,nil,nil,0)
- end
- tres_d(0, "MOUSE")
- tres_d(3, "8", 300)
Advertisement
Add Comment
Please, Sign In to add comment