### Define Clan Hall Location - GameConfig Source: https://github.com/melxin/devious-client/blob/master/runelite-client/src/main/resources/net/runelite/client/plugins/skybox/skybox.txt Defines the location for the Clan Hall using an 'r' command, likely specifying a circular or single-point region. ```GameConfig // Clan Hall r 27 85 ``` -------------------------------- ### Configure Initial Settings - GameConfig Source: https://github.com/melxin/devious-client/blob/master/runelite-client/src/main/resources/net/runelite/client/plugins/skybox/skybox.txt Sets initial configuration parameters using 'C' and 'b' commands. The exact meaning of these parameters depends on the game engine interpreting this configuration. ```GameConfig C 4 0 24 4 b 12 ``` -------------------------------- ### Define Iorwerth Dungeon Location - GameConfig Source: https://github.com/melxin/devious-client/blob/master/runelite-client/src/main/resources/net/runelite/client/plugins/skybox/skybox.txt Defines the location for the Iorwerth dungeon using a color code (#) and an 'R' command, likely specifying a rectangular region. ```GameConfig // Iorwerth dungeon #030A0A R 49 193 51 194 ``` -------------------------------- ### Apply Color #2b2b2b to Regions - Custom Format Source: https://github.com/melxin/devious-client/blob/master/runelite-client/src/main/resources/net/runelite/client/plugins/skybox/skybox.txt Sets the current color to #2b2b2b and applies it with the current blending setting to multiple rectangular regions (R) and a single region (r). ```Custom Format #2b2b2b R 46 57 53 57 R 55 62 56 62 r 45 151 ``` -------------------------------- ### Define Cerberus Location - GameConfig Source: https://github.com/melxin/devious-client/blob/master/runelite-client/src/main/resources/net/runelite/client/plugins/skybox/skybox.txt Defines the location for the Cerberus area using a color code (#) and an 'R' command, likely specifying a rectangular region. ```GameConfig // Cerberus #100 R 19 19 21 20 ``` -------------------------------- ### Define Ruins of Camdozaal Location - GameConfig Source: https://github.com/melxin/devious-client/blob/master/runelite-client/src/main/resources/net/runelite/client/plugins/skybox/skybox.txt Defines the location for the ruins of Camdozaal using a color code (#) and an 'R' command, likely specifying a rectangular region. ```GameConfig // ruins of camdozaal #292030 R 45 89 47 91 ``` -------------------------------- ### Define Nightmare Dungeon Location - GameConfig Source: https://github.com/melxin/devious-client/blob/master/runelite-client/src/main/resources/net/runelite/client/plugins/skybox/skybox.txt Defines the location for the Nightmare dungeon using a color code (#) and an 'R' command, likely specifying a rectangular region. ```GameConfig // Nightmare dungeon (Morytania underground) #0a0a0a R 58 151 60 153 ``` -------------------------------- ### Define POH Styles (31 89) - GameConfig Source: https://github.com/melxin/devious-client/blob/master/runelite-client/src/main/resources/net/runelite/client/plugins/skybox/skybox.txt Defines styles for POH type 31 89, specifically the Hosidius style. Uses 'm', 'p', color codes (#), 'C', and 'c' commands to set properties. ```GameConfig m31 89 // 31 89 p0 Hosidius p 0 #B9D6FF C 0 0 7 15 // dungeon #3e2c0a c 3 0 c 0 3 c 2 3 c 4 3 c 6 3 c 7 4 ``` -------------------------------- ### Apply Color #271010 to Regions - Custom Format Source: https://github.com/melxin/devious-client/blob/master/runelite-client/src/main/resources/net/runelite/client/plugins/skybox/skybox.txt Sets the current color to #271010 and applies it with the current blending setting to a rectangular region (R) and a single region (r). ```Custom Format #271010 R 46 74 48 75 r 47 76 ``` -------------------------------- ### Apply Color #2a2f42 to Region - Custom Format Source: https://github.com/melxin/devious-client/blob/master/runelite-client/src/main/resources/net/runelite/client/plugins/skybox/skybox.txt Sets the current color to #2a2f42 and applies it with the current blending setting to a single region defined by its region coordinates (region X, region Y). ```Custom Format #2a2f42 r 38 75 ``` -------------------------------- ### Define Skybox Bounds - Custom Format Source: https://github.com/melxin/devious-client/blob/master/runelite-client/src/main/resources/net/runelite/client/plugins/skybox/skybox.txt Sets the rectangular bounds for the skybox image using minimum and maximum region coordinates (rx1, ry1, rx2, ry2). This must be the first expression in the file. ```Custom Format bounds 18 19 60 196 ``` -------------------------------- ### Apply Color #262626 to Regions - Custom Format Source: https://github.com/melxin/devious-client/blob/master/runelite-client/src/main/resources/net/runelite/client/plugins/skybox/skybox.txt Sets the current color to #262626 and applies it with the current blending setting to a rectangular region (R) and a single region (r). ```Custom Format #262626 R 46 58 53 58 r 24 79 ``` -------------------------------- ### Apply Color #0f0f0f to Region - Custom Format Source: https://github.com/melxin/devious-client/blob/master/runelite-client/src/main/resources/net/runelite/client/plugins/skybox/skybox.txt Sets the current color to #0f0f0f and applies it with the current blending setting to a single region defined by its region coordinates (region X, region Y). ```Custom Format #0f0f0f r 34 75 ``` -------------------------------- ### Set Skybox Blending Radius - Custom Format Source: https://github.com/melxin/devious-client/blob/master/runelite-client/src/main/resources/net/runelite/client/plugins/skybox/skybox.txt Sets the blending radius in tiles for subsequent operations. This value persists until set again. The number specifies the radius, up to 13 tiles. ```Custom Format b 8 ``` -------------------------------- ### Define Braindeath Island Location - GameConfig Source: https://github.com/melxin/devious-client/blob/master/runelite-client/src/main/resources/net/runelite/client/plugins/skybox/skybox.txt Defines the location for Braindeath Island using a color code (#) and an 'R' command, likely specifying a rectangular region. ```GameConfig // Braindeath Island #B9D6FF R 33 79 33 80 ``` -------------------------------- ### Define POH Styles (29 89) - GameConfig Source: https://github.com/melxin/devious-client/blob/master/runelite-client/src/main/resources/net/runelite/client/plugins/skybox/skybox.txt Defines styles for POH type 29 89, including Basic wood, Basic stone, Fremennik-style wood, and Whitewashed stone. Uses 'm', 'p', color codes (#), 'C', and 'c' commands to set properties for different styles. ```GameConfig m29 89 // 29 89 p0 Basic wood // 29 89 p1 Basic stone // 29 89 p3 Fremennik-style wood p 0 1 3 #B9D6FF C 0 0 7 15 p 0 #251B09 c 3 0 c 0 3 c 2 3 c 4 3 c 6 3 c 7 4 p 1 #484840 c 3 0 c 0 3 c 2 3 c 4 3 c 6 3 c 7 4 // 29 89 p2 Whitewashed stone p 2 #7fc7d9 C 0 0 7 15 p 2 3 #2C2C29 c 3 0 c 0 3 c 2 3 c 4 3 c 6 3 c 7 4 ``` -------------------------------- ### Apply Color #323232 to Regions - Custom Format Source: https://github.com/melxin/devious-client/blob/master/runelite-client/src/main/resources/net/runelite/client/plugins/skybox/skybox.txt Sets the current color to #323232 and applies it with the current blending setting to multiple rectangular regions (R) and a single region (r). ```Custom Format #323232 ``` -------------------------------- ### Apply Color #1a1a1a to Region - Custom Format Source: https://github.com/melxin/devious-client/blob/master/runelite-client/src/main/resources/net/runelite/client/plugins/skybox/skybox.txt Sets the current color to #1a1a1a and applies it with the current blending setting to a rectangular region defined by its top-left (rx1, ry1) and bottom-right (rx2, ry2) region coordinates. ```Custom Format #1a1a1a R 47 60 53 60 ``` -------------------------------- ### Apply Color #242424 to Region - Custom Format Source: https://github.com/melxin/devious-client/blob/master/runelite-client/src/main/resources/net/runelite/client/plugins/skybox/skybox.txt Sets the current color to #242424 and applies it with the current blending setting to a single region defined by its region coordinates (region X, region Y). ```Custom Format #242424 r 29 81 ``` -------------------------------- ### Apply Color #242e2c to Region - Custom Format Source: https://github.com/melxin/devious-client/blob/master/runelite-client/src/main/resources/net/runelite/client/plugins/skybox/skybox.txt Sets the current color to #242e2c and applies it with the current blending setting to a single region defined by its region coordinates (region X, region Y). ```Custom Format #242e2c r 56 160 ``` -------------------------------- ### Define POH Styles (30 89) - GameConfig Source: https://github.com/melxin/devious-client/blob/master/runelite-client/src/main/resources/net/runelite/client/plugins/skybox/skybox.txt Defines styles for POH type 30 89, including Tropical wood, Fancy stone, Deathly mansion, and Twisted League. Uses 'm', 'p', color codes (#), 'C', and 'c' commands to set properties for different styles. ```GameConfig m30 89 // 30 89 p0 Tropical wood p 0 #7fc7d9 C 0 0 7 15 // 30 89 p1 Fancy stone // 30 89 p2 Deathly mansion p 1 2 #B9D6FF C 0 0 7 15 p 0 1 2 #2C2C29 c 3 0 c 0 3 c 2 3 c 4 3 c 6 3 c 7 4 // 30 89 p3 Twisted League p 3 #161414 C 0 0 7 15 // dungeon p 3 #2C2C29 c 3 0 c 0 3 c 2 3 c 4 3 c 6 3 c 7 4 ``` -------------------------------- ### Define Song of the Elves Boss Area Location - GameConfig Source: https://github.com/melxin/devious-client/blob/master/runelite-client/src/main/resources/net/runelite/client/plugins/skybox/skybox.txt Defines the location for the Song of the Elves boss area using 'b', color code (#), and an 'R' command, likely specifying a rectangular region. ```GameConfig b 0 #000000 // Song of the elves boss area R 49 92 51 92 ``` -------------------------------- ### Define Cosmic Entity's Plane Location - GameConfig Source: https://github.com/melxin/devious-client/blob/master/runelite-client/src/main/resources/net/runelite/client/plugins/skybox/skybox.txt Defines the location for the Cosmic entity's plane using a color code (#) and an 'r' command, likely specifying a circular or single-point region. ```GameConfig // Cosmic entity's plane #040404 r 32 75 ``` -------------------------------- ### Apply Color #161616 to Region - Custom Format Source: https://github.com/melxin/devious-client/blob/master/runelite-client/src/main/resources/net/runelite/client/plugins/skybox/skybox.txt Sets the current color to #161616 and applies it with the current blending setting to a rectangular region defined by its top-left (rx1, ry1) and bottom-right (rx2, ry2) region coordinates. ```Custom Format #161616 R 47 61 53 62 ``` -------------------------------- ### Apply Color #B9D6FF to Region - Custom Format Source: https://github.com/melxin/devious-client/blob/master/runelite-client/src/main/resources/net/runelite/client/plugins/skybox/skybox.txt Sets the current color to #B9D6FF and applies it with the current blending setting to a rectangular region defined by its top-left (rx1, ry1) and bottom-right (rx2, ry2) region coordinates. ```Custom Format #B9D6FF R 18 39 60 64 ``` -------------------------------- ### Apply Color #202020 to Region - Custom Format Source: https://github.com/melxin/devious-client/blob/master/runelite-client/src/main/resources/net/runelite/client/plugins/skybox/skybox.txt Sets the current color to #202020 and applies it with the current blending setting to a rectangular region defined by its top-left (rx1, ry1) and bottom-right (rx2, ry2) region coordinates. ```Custom Format #202020 R 46 59 53 59 ``` -------------------------------- ### Apply Color #2e2e2e to Region - Custom Format Source: https://github.com/melxin/devious-client/blob/master/runelite-client/src/main/resources/net/runelite/client/plugins/skybox/skybox.txt Sets the current color to #2e2e2e and applies it with the current blending setting to a rectangular region defined by its top-left (rx1, ry1) and bottom-right (rx2, ry2) region coordinates. ```Custom Format #2e2e2e R 36 147 37 147 ``` -------------------------------- ### Apply Color #181818 to Region - Custom Format Source: https://github.com/melxin/devious-client/blob/master/runelite-client/src/main/resources/net/runelite/client/plugins/skybox/skybox.txt Sets the current color to #181818 and applies it with the current blending setting to a rectangular region defined by its top-left (rx1, ry1) and bottom-right (rx2, ry2) region coordinates. ```Custom Format #181818 R 37 79 39 80 ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.