Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local function guitext(xpos,ypos,text,color) --anchor not supported
- gui.text(xpos-1,ypos-1,text,0,"black")
- gui.text(xpos+0,ypos-1,text,0,"black")
- gui.text(xpos+1,ypos-1,text,0,"black")
- gui.text(xpos+1,ypos+0,text,0,"black")
- gui.text(xpos+1,ypos+1,text,0,"black")
- gui.text(xpos+0,ypos+1,text,0,"black")
- gui.text(xpos-1,ypos+1,text,0,"black")
- gui.text(xpos-1,ypos+0,text,0,"black")
- gui.text(xpos,ypos,text,0,color)
- end
- local function guidrawText(xpos,ypos,text,color) --font not supported
- gui.drawText(xpos-1,ypos-1,text,"black")
- gui.drawText(xpos+0,ypos-1,text,"black")
- gui.drawText(xpos+1,ypos-1,text,"black")
- gui.drawText(xpos+1,ypos+0,text,"black")
- gui.drawText(xpos+1,ypos+1,text,"black")
- gui.drawText(xpos+0,ypos+1,text,"black")
- gui.drawText(xpos-1,ypos+1,text,"black")
- gui.drawText(xpos-1,ypos+0,text,"black")
- gui.drawText(xpos,ypos,text,color)
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement