Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -------------------------------------------------------
- -------------- SETTINGS AREA --------------------------
- -------------------------------------------------------
- surface.CreateFont( "ContextMenu_Title", {
- font = "Verdana",
- size = 20,
- weight = 500
- } )
- surface.CreateFont( "ContextMenu_Link", {
- font = "Verdana",
- size = 17,
- weight = 500
- } )
- surface.CreateFont( "ContextMenu_Default", {
- font = "Verdana",
- size = 15,
- weight = 500
- } )
- local S = {
- emotes = {
- columns = 3,
- rows = 3,
- },
- colors = {
- bg = Color( 30, 30, 30, 230 ),
- border = Color( 30, 30, 30, 100 ),
- title = Color( 255, 255, 255, 255 ),
- },
- margin = {
- top = 40,
- left = 10,
- },
- emoteButton = {
- size = 40,
- margin = 4,
- },
- linkButton = {
- padding = {
- top = 2,
- left = 5,
- },
- margin = {
- top = 10,
- left = 10,
- },
- color = Color( 240, 240, 240, 200 ),
- colorHover = Color( 255, 255, 255, 255 ),
- }
- }
- local SERVERS = {}
- SERVERS["Murder"] = "octothorp.team:27016"
- SERVERS["DarkRP"] = "octothorp.team:27016"
- SERVERS["Trouble in terrorist town"] = "octothorp.team:27016"
- SERVERS["Zombie"] = "octothorp.team:27016"
- SERVERS["Starwars"] = "octothorp.team:27016"
- local emotesIcons = {
- cheer = Material( "context_menu/cheer.png", "noclamp smooth" ),
- halt = Material( "context_menu/halt.png", "noclamp smooth" ),
- salute = Material( "context_menu/salute.png", "noclamp smooth" ),
- wave = Material( "context_menu/wave.png", "noclamp smooth" )
- }
- local EMOTES = {
- { icon = emotesIcons.wave, emote = ACT_GMOD_GESTURE_BOW },
- { icon = emotesIcons.cheer, emote = ACT_GMOD_TAUNT_MUSCLE },
- { icon = emotesIcons.salute, emote = ACT_GMOD_GESTURE_BECON },
- { icon = emotesIcons.cheer, emote = ACT_GMOD_TAUNT_PERSISTENCE },
- { icon = emotesIcons.halt, emote = ACT_GMOD_GESTURE_DISAGREE },
- { icon = emotesIcons.wave, emote = ACT_GMOD_GESTURE_AGREE },
- { icon = emotesIcons.wave, emote = ACT_GMOD_GESTURE_WAVE },
- { icon = emotesIcons.cheer, emote = ACT_GMOD_TAUNT_DANCE },
- }
- -------------------------------------------------------
- -------------------------------------------------------
- -------------------------------------------------------
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement