Can you change your rust character
Author: e | 2025-04-24
Can You Change Your Character Appearance and Gender in Rust? No, there is no way to change your character in Rust. Your appearance is randomly generated based on your
Rust: Can you change your character - DigiStatement
Back to the artist.How do you use Rust coins on console? Buy 4600 Rust Coins. These can be spent within the Rust Console Edition skin store to purchase new customisation skins. Apply them to your gear, weapons, buildings and more! Rust Coins can only be redeemed and used on the platform through which they were originally purchased.Is rust going to be cross platform?Yes, Rust is cross-platform with PS4 and Xbox One. This means that if your friend is playing on the PS4, you can still play and chat with them if you are playing on Xbox and vice versa. So, you don’t need to buy the game for both systems to play with your friends.Is there a way to change your Rust character? Officially, there is no way to change your character’s gender inside the game. In fact, you don’t even get to customize your character at the beginning. This is not a part of the developer’s mistake; it’s a deliberate choice.Rust Tutorials | How to Buy, Use, Sell Skins, & How the Loot How do I change my character in Rust Xbox?Rust does not have any options to change your character’s gender or race. The game is set up to generate characters randomly based on the user’s account ID. The only real way to change your gender in Rust is to play under another account with a completely different character.Can you change your appearance in Rust? Every Rust player has been permanently assigned a skin and hair colour. Facepunch founder Garry Newman said it’s “just like in real life, you are who you are – you can’t change your skin colour or your face.” The change has angered some Rust players who want the freedom to change how they look in game.How do you get drops in Rust?When does the next refresh come for the rust item shop? Usually, there are new skins in the Rust Item Shop every Thursday.GamerAll website is highly trustable by the customers. You can check out thousands of independent reviews on the services like Trustpilot and Reviews.
Can you change character in Rust? - Sportskeeda
You can put the item on the crafting section in the crafting menu and a “Skin” category will pop up beneath it. Select the skin you want to use for the item. For items that can’t be crafted in any way, you can still change the skin by using the crafting station this way.Considering this,do rust skin creators get paid?Survival FPS Rust has paid out over $1,000,000 to its community skin-creators. Following in Valve’s footsteps, Rust allows creators to upload alternate skins for items and weapons to the Steam Workshop to be voted on, with the most popular being added to the game as premium cosmetic upgrades.How do you use skins in the workshop in Rust? How to Use Item Skins on Rust? Go into a game.Create a crafting station.If the item is craftable, craft the item as well.You can put the item on the crafting section in the crafting menu and a “Skin” category will pop up beneath it.Select the skin you want to use for the item.Consequently,how much money does rust make?Sales and player count By March 2017, the game had sold more than 5.2 million units, with more than 1.2 million in-game skins sold. In December 2019, Facepunch announced that Rust had sold 9 million copies, making $142 million, overtaking Garry’s Mod in terms of gross, though still behind in total sales.Can you make your own Rust Skins?Open the game and click the workshop button. You can use this section to preview and vote on skins. To create a new skin, click NEW on the top right.Things to considerHow do I change my character in console in Rust?What is Rust net worth?What is the rarest thing in Rust?Is rust going to be cross platform?How do you get drops in Rust?Things to considerBelow are some things to consider when trying to figure out how does crafting skins work in rust.How do I change my character in console in Rust?There is only one way to change characters in Rust: switch to a different Steam account. When players launch the game for the first time, a character is randomly generated and tied to their Steam ID. No amount of uninstalling and reinstalling or changing screen names will cause the character to change.How do workshop items work Rust? Ultimately, the developers choose which items to select and add to Rust. Accepted items from the Workshop are made available for purchase orCan you change your character on Rust? - Pro Game Guides
RustPythonA Python-3 (CPython >= 3.13.0) Interpreter written in Rust 🐍 😱🤘.UsageCheck out our online demo running on WebAssembly.RustPython requires Rust latest stable version (e.g 1.67.1 at February 7th 2023). If you don'tcurrently have Rust installed on your system you can do so by following the instructions at rustup.rs.To check the version of Rust you're currently running, use rustc --version. If you wish to update,rustup update stable will update your Rust installation to the most recent stable release.To build RustPython locally, first, clone the source code:git clone you can change into the RustPython directory and run the demo (Note: --release isneeded to prevent stack overflow on Windows):$ cd RustPython$ cargo run --release demo_closures.pyHello, RustPython!Or use the interactive shell:>>>> 2+24">$ cargo run --releaseWelcome to rustpython>>>>> 2+24NOTE: For windows users, please set RUSTPYTHONPATH environment variable as Lib path in project directory.(e.g. When RustPython directory is C:\RustPython, set RUSTPYTHONPATH as C:\RustPython\Lib)You can also install and run RustPython with the following:>>>>">$ cargo install --git rustpython$ rustpythonWelcome to the magnificent Rust Python interpreter>>>>>If you'd like to make https requests, you can enable the ssl feature, whichalso lets you install the pip package manager. Note that on Windows, you mayneed to install OpenSSL, or you can enable the ssl-vendor feature instead,which compiles OpenSSL for you but requires a C compiler, perl, and make.OpenSSL version 3 is expected and tested in CI. Older versions may not work.Once you've installed rustpython with SSL support, you can install pip byrunning:cargo install --git --features sslrustpython --install-pipYou can also install RustPython through the conda package manager, thoughthis isn't officially supported and may be out of date:conda install rustpython -c conda-forgerustpythonWASIYou can compile RustPython to a standalone WebAssembly WASI module so it can run anywhere.Buildcargo build --target wasm32-wasip1 --no-default-features --features freeze-stdlib,stdlib --releaseRun by wasmerwasmer run --dir `pwd` -- target/wasm32-wasip1/release/rustpython.wasm `pwd`/extra_tests/snippets/stdlib_random.pyRun by wapm>>>> 2+24">$ wapm install rustpython$ wapm run rustpython>>>>> 2+24Building the WASI fileYou can build the WebAssembly WASI file with:cargo build --release --target wasm32-wasip1 --features="freeze-stdlib"Note: we use the freeze-stdlib to include the standard library inside the binary. You also have to run once rustup target add wasm32-wasip1.JIT (Just in time) compilerRustPython has a very experimental JIT compiler that compile python functions into native code.BuildingBy default the JIT compiler isn't enabled, it's enabled with the jit cargo feature.This requires autoconf, automake, libtool, and clang to be installed.UsingTo compile a function, call __jit__() on it.def foo(): a = 5 return 10 + afoo.__jit__() # this will compile foo to native code and subsequent calls will execute that native codeassert foo() == 15Embedding RustPython into your Rust ApplicationsInterested in exposing Python scripting in an application written in Rust,perhaps to allow quickly tweaking logic where Rust's compile times would be inhibitive?Then examples/hello_embed.rs and examples/mini_repl.rs may be of some assistance.DisclaimerRustPython is in development, and while the interpreter certainly can be usedin interesting use cases like running Python in WASM and embedding into a Rustproject, do note that RustPython is not totally production-ready.Contribution is more than welcome! See our contribution section for moreinformation on this.Conference videosCheckout those talks on. Can You Change Your Character Appearance and Gender in Rust? No, there is no way to change your character in Rust. Your appearance is randomly generated based on your Can You Change Your Character Appearance and Gender in Rust? No, there is no way to change your character in Rust. Your appearance is randomly generated based on yourHow to Change Your Character in Rust in
Player has joined a team, they can choose to leave that team at any time.In order to leave a team:Press the Tab button to open the inventoryClick on Leave Team buttonOnce a player has left a team, they will be removed from the team roster. They will no longer have a green name and dot displayed above their character. Their name will be white and a white dot will persist over their head. In addition, they will also be able to be invited to and join, different teams or create a new team them self.Promoting a team leaderCurrent team leaders can pass the role to other members of the team. Promoting a different team member will pass the role on and remove it from the prior team leader.In order to promote another team member to team leader:You must have a team leader roleIn the game, walk up to the new target leaderPress and hold the E button until the progress bar completesOnce completed, the new leader will now have the green check mark next to their name. If the team leader leaves with no additional team members, the team will automatically be disbanded. Otherwise when a team leader leaves, without promoting a replacement leader, the next player in the team roster will take over and be marked as the new team leader.Locating RUST team membersWhen a new RUST team member is added to your team roster, that player will now be able to be seen on the map. There will be a small green dot, with the team member’s in-game name displayed above it. Your avatar will remain as a yellow dot indicator on the map.In order to locate team members:You must first be in the same teamPress the G button to open the mapObserve the green dots with team member namesKicking a team memberIf a team member needs to be kicked, the team’s leader has the ability to individually remove team members through the interface. Team members can be removed regardless if they’re online or off, in the line of sight or not.In order to kick team members:You must be the team leaderHover the cursor over the team member to kickPress the Kick buttonOnce a player has been kicked, their name will be removed from the team roster. Their name tag and a dot will turn white.Frequently asked questions about RUST TeamsQuestionAnswerCan you disable the team system?RUST admins can disable the team system if they choose to for their server. It is enabled in the base Vanilla game by default.Can you join multiple teams?No, only one team per player.Can multiple teams align or join together?No, only one team of 8 players may be grouped together.Can you change the color of the team roster, dot, or names?No, colors cannot be modified in Vanilla.Can you see team members through walls, buildings, and geography?No, as of the Bandit Camp Update, this was modified so that line of sight is required to see your team members.Can team sizes be changed?Yes, teams sizes canRust: Why you CAN’T Change Your Character - YouTube
Can be unlocked within Rust. Items from this Workshop that are accepted for sale will pay the creators a split of the revenue if that item is sold for a fee.How do you put skins on a SkinBox?SkinBox allows players to change the skin of any skinnable item they place in the box. When a item has been placed in the box it will be populated with the available skins. The user can then drag out the skin they want.How much does Rust make per year? For context, I recently posted that Facepunch’s 2020 year in review blog listed its lifetime revenue for Rust. Comparing it to 2019’s post, Rust sold 530,000 copies during 2020, and grossed $43 million during the year.What is Rust net worth?Rust How Skins Work | How to Use Skins in Rust Paul Rust Net Worth Net Worth:$1 MillionDate of Birth:Apr 12, 1981 (40 years old)Gender:MaleProfession:Actor, Screenwriter, Comedian, MusicianNationality:United States of AmericaHow much did Facepunch make of Rust? Twice this week, Rust developers from Facepunch earned more than $1 million in revenue thanks to the game’s sudden popularity surge. It all started with a handful of well-known streamers investing their time in the online survival title once again.How do you get free skins on rust?How to get Rust skins for Free? Recover your acquired focuses.Various gift vouchers.Steam Gift Cards.BitSkins Account Balance.SkinBaron Gift Cards.Skin Ebay Gift Cards.Is Skinport a legit site? Skinport.com is a completely legit platform and it also worked well in our tests. We didn’t find any suspicious activity during our use. Skinport is also whitelisted independently by the Counter-Strike: Global Offensive Reddit Community. It has been around since 2019.What is the rarest thing in Rust?The following are Very Rare Blueprints. Metal Facemask.Muzzle Boost.Muzzle Brake.Rocket Launcher.Silencer.Timed Explosive Charge.Laser Sight.Weapon Flashlight.What rust skins should I buy? The Best Rust Skins You Should Buy in 2021 Tempered AK47. Category: Weapon. Starting Price: $25.19. Doodle Pants. Category: Clothing. Retrowave AR. Category: Weapon. Azul Python. Category: Weapon. Retrowave Bow. Category: Weapon. Gingerbread SAR. Category: Weapon. Winter Hoodie. Category: Clothing. Bombing Facemask. Category: Armor.How to make MONEY in Rust | Skin Trading How much do skins cost in Rust?Skin Market Every week (or so), FacePunch will pick a handful of skins submitted by artists. For one week only, players can purchase these skins for a fixed price from their Store, generally $0.99 between $1.99. A portion of every sale goesVideo :: How you change your character in Rust. - Steam
Are plenty of console commands, only a few will be useful to most players. Here are some to keep an eye on as they work on building their base, setting the best traps, and hunting other players. perf 1 allows the player to see how much strain their computer is under while playing the game by displaying the FPS. perf 2 shows both FPS and RAM, giving the player even more information to help them tweak their settings. fps.limit-1 lets the player change the game's FPS directly in case the game is too sluggish. The default value is -1, but the player can change it. kill and suicide are interchangeable commands that perform the same action: kill the player's character, allowing them to respawn. If the character is stuck in a hopeless situation or helplessly glitched, this command can be the easiest solution to get back in the game, which can be a blessing in a brutal survival game like this one. There is a 60-second cooldown when using this command. streamermode 1 turns on streamer mode, randomizing or hiding names in order to help prevent stream sniping. It's not a perfect fix, but it should deter most stream snipers and appease those that don't wish their gameplay to be filmed. streamermode 0 turns this feature back off. These commands might not help the player find scrap or keep them alive in PvP, but at least they can make the game a little smoother. Rust is available on PlayStation 4, Xbox One, and PC. MORE: Longest Survival GamesCan You Change Your Gender Race In Rust?
Introducing RUST Team ManagementThe RUST Team system allows players to form a group to provide private in-game chat and map visibility for each online team member. The RUST team concept was introduced in The Team Update, allowing RUST players to formulate teams of up to 8 members on vanilla settings. With the addition of the RUST+ app, team mates can also chat in team chat while logged out of RUST, which provides an alternative to using 3rd party apps like Discord for team coordination.With the team system in the game, players are able to identify team players from non-team players, with a visual indicator system.White Dots identify that the player is not in your team roster.Green Dots identify that the player is in your team roster, currently online and alive.Grey Dots identify that the player is in your team but offline.Red Dots identify that the player is in your team and dead.Table of ContentsCreating a new teamInviting new team membersJoining a teamLeaving a teamPromoting a team leaderLocating team membersKicking a team memberFrequently Asked QuestionsCreating a new team in RUSTAll players are able to create a RUST team, regardless of their role. When RUST teams are created, they automatically add the initiating player and mark them as the team leader.Follow these steps to create a new team in RUST:You must not be part of an existing teamPress the Tab button to open the inventory screenClick on the Create Team buttonOnce a new team has been formed, the team leader’s name will appear in green on the lower left of the screen, with a checkmark to the left of their name. The green check indicates the team leader role. All other active team members will also appear on this team roster, in chronological order from which they were invited.Inviting new team membersIn order to invite new team members:You must have the team leader roleIn the game, walk up to the player you wish to inviteThen press the E button to inviteOnce a new team member has been invited, they will hear a notification sound and will have a prompt displayed in the lower left of their inventory screen. When the invited player accepts the invitation, they will be added to the team and appear on the team roster as an active member. Their name will now appear green with a green dot below their name. The controls to leave the group will become available. In addition, they will also become available for promotion to team leader.Joining a teamWhen a player wishes to join a team, they will need to be invited by the specific RUST team’s team leader. The group’s current team leader can be identified by the check mark next to their name in the Team UI.In order to join a team:Locate the team leader in gameAsk and wait for an invitationPress Tab to open the character inventoryClick on the Accept buttonWhen an invitation is sent, a prompt will display in the inventory screen, displaying the following:Leaving a RUST teamWhen a. Can You Change Your Character Appearance and Gender in Rust? No, there is no way to change your character in Rust. Your appearance is randomly generated based on your
Rust: Can you change your character - DigiStatement
Want to improve your rust server with the build system of rust? You got it with this plugin!This plugin adds a build and upgrade system like the rust one!Features:Rust build system.Rust upgrade system.Open UI pressing Right Click.A lot of options to configure it.Configurable upgradesYou wanna use modded structures? No problem, just set the ID in the configuration file.Configurable UIDo you wanna change what will be default structure that you will can build with the chart? That's fine, in the end of the configuration file you will have a list to change all of this.You can see the configuration and translation file here.This plugin need this UI: ReviewsNice (*)(*)(*)(*)(*) - May 15, 2023 Nice Workucangamer0 out of 0 people found this helpfulepic(*)(*)(*)(*)(*) - Oct 14, 2022 epiclaskique0 out of 0 people found this helpfulperfect(*)(*)(*)(*)(*) - Sep 23, 2022 good plugin for a good price!gukklol0 out of 0 people found this helpfulplz(*)(*)(*)(*)(*) - Feb 18, 2022 How to summon this interface?NickVolson0 out of 0 people found this helpfulHi, just equip the item that u has set in the configuration and press right click.SSPlugins | Feb 19, 2022 (*)( )( )( )( ) - Jul 13, 2023 Hi. I bought your "RustBuildSystem" plugin. The problem is that my server uses stacks of resources. Your plugin doesn't work with my stacks, can you fix it?roflex1 out of 2 people found this helpfulSupported payment methods PayPal, Supported Platforms RocketModAll future updates (bug fixes, new features, etc.) are included in the price.Can you change character in Rust? - Sportskeeda
Easy manage your Rust server! Player, chat, and RCON management in one app Take your Rust server administration to the next level with Rust Admin Tool! Our app makes managing your Rust game server easier than ever before. With just a few taps, you can easily manage your players, chat with your server, and access your server's RCON console.Say goodbye to the hassle of remembering commands and entering them manually into the web console. Rust Admin Tool streamlines the process, allowing you to perform common tasks with ease.Our app is designed specifically for Rust server administrators, providing all the essential features you need to manage your server efficiently. With Rust Admin Tool, you can focus on what really matters - providing your players with the best possible Rust experience.Download Rust Admin Tool today and take control of your Rust game server like never before! Additional APP Information Latest Version 1.0.9 Requires Android Android 8.0+ Available on What's New in the Latest Version 1.0.9 Last updated on Apr 9, 2024 Fixed issue with players avatars and Steam profile links Rust Admin Tool Screenshots. Can You Change Your Character Appearance and Gender in Rust? No, there is no way to change your character in Rust. Your appearance is randomly generated based on yourCan you change your character on Rust? - Pro Game Guides
Let sensor_id = mac_addr.iter().fold(String::new(), |mut output, b| {6 let _ = write!(output, "{b:02x}");7 output8 });9 log::info!("Id: {:?}", sensor_id);10 sensor_id11 }12 _ => {13 log::error!("Unable to get id.");14 String::from("BADCAFE00BADBEEF")15 }16 }17}Then, we use the function before defining the topic and use its result with it:1let sensor_id = get_sensor_id();2let topic = format!("home/noise sensor/{sensor_id}");And we slightly change the way we publish the data to use the topic:1if let Ok(msg_id) = mqtt_client.publish(&topic, QoS::AtMostOnce, false, mqtt_msg.as_bytes())We also need to change the subscription so we listen to all the topics that start with home/sensor/ and have one more level:1mosquitto_sub -t "home/noise sensor/+" -u soundsensor -P "Zap\!Pow\!Bam\!Kapow\!"We compile and run with cargo r and the values start showing up on the terminal where the subscription was initiated.Recap and future workIn this article, we have used Rust to write the firmware for an ESP32-C6-DevKitC-1 board from beginning to end. Although we can agree that Python was an easier approach for our first firmware, I believe that Rust is a more robust, approachable, and useful language for this purpose.The firmware that we have created can inform the user of any problems using an RGB LED, measure noise in something close enough to deciBels, connect our board to the WiFi and then to our MQTT broker as a client, and publish the measurements of our noise sensor. Not bad for a single tutorial.We have even gotten ahead of ourselves and added some code to ensure that different sensors with the same firmware publish their values to different topics. And to do so, we have done a very brief incursion in the universe of unsafe Rust and survived the wilderness. Now you can go to a bar and tell your friends, "I wrote unsafe Rust." Well done!In our next article, we will be writing C++ code again to collect the data from the MQTT broker and then send it to our instance of MongoDB Atlas in the Cloud. So get ready!Comments
Back to the artist.How do you use Rust coins on console? Buy 4600 Rust Coins. These can be spent within the Rust Console Edition skin store to purchase new customisation skins. Apply them to your gear, weapons, buildings and more! Rust Coins can only be redeemed and used on the platform through which they were originally purchased.Is rust going to be cross platform?Yes, Rust is cross-platform with PS4 and Xbox One. This means that if your friend is playing on the PS4, you can still play and chat with them if you are playing on Xbox and vice versa. So, you don’t need to buy the game for both systems to play with your friends.Is there a way to change your Rust character? Officially, there is no way to change your character’s gender inside the game. In fact, you don’t even get to customize your character at the beginning. This is not a part of the developer’s mistake; it’s a deliberate choice.Rust Tutorials | How to Buy, Use, Sell Skins, & How the Loot How do I change my character in Rust Xbox?Rust does not have any options to change your character’s gender or race. The game is set up to generate characters randomly based on the user’s account ID. The only real way to change your gender in Rust is to play under another account with a completely different character.Can you change your appearance in Rust? Every Rust player has been permanently assigned a skin and hair colour. Facepunch founder Garry Newman said it’s “just like in real life, you are who you are – you can’t change your skin colour or your face.” The change has angered some Rust players who want the freedom to change how they look in game.How do you get drops in Rust?When does the next refresh come for the rust item shop? Usually, there are new skins in the Rust Item Shop every Thursday.GamerAll website is highly trustable by the customers. You can check out thousands of independent reviews on the services like Trustpilot and Reviews.
2025-04-13You can put the item on the crafting section in the crafting menu and a “Skin” category will pop up beneath it. Select the skin you want to use for the item. For items that can’t be crafted in any way, you can still change the skin by using the crafting station this way.Considering this,do rust skin creators get paid?Survival FPS Rust has paid out over $1,000,000 to its community skin-creators. Following in Valve’s footsteps, Rust allows creators to upload alternate skins for items and weapons to the Steam Workshop to be voted on, with the most popular being added to the game as premium cosmetic upgrades.How do you use skins in the workshop in Rust? How to Use Item Skins on Rust? Go into a game.Create a crafting station.If the item is craftable, craft the item as well.You can put the item on the crafting section in the crafting menu and a “Skin” category will pop up beneath it.Select the skin you want to use for the item.Consequently,how much money does rust make?Sales and player count By March 2017, the game had sold more than 5.2 million units, with more than 1.2 million in-game skins sold. In December 2019, Facepunch announced that Rust had sold 9 million copies, making $142 million, overtaking Garry’s Mod in terms of gross, though still behind in total sales.Can you make your own Rust Skins?Open the game and click the workshop button. You can use this section to preview and vote on skins. To create a new skin, click NEW on the top right.Things to considerHow do I change my character in console in Rust?What is Rust net worth?What is the rarest thing in Rust?Is rust going to be cross platform?How do you get drops in Rust?Things to considerBelow are some things to consider when trying to figure out how does crafting skins work in rust.How do I change my character in console in Rust?There is only one way to change characters in Rust: switch to a different Steam account. When players launch the game for the first time, a character is randomly generated and tied to their Steam ID. No amount of uninstalling and reinstalling or changing screen names will cause the character to change.How do workshop items work Rust? Ultimately, the developers choose which items to select and add to Rust. Accepted items from the Workshop are made available for purchase or
2025-04-02Player has joined a team, they can choose to leave that team at any time.In order to leave a team:Press the Tab button to open the inventoryClick on Leave Team buttonOnce a player has left a team, they will be removed from the team roster. They will no longer have a green name and dot displayed above their character. Their name will be white and a white dot will persist over their head. In addition, they will also be able to be invited to and join, different teams or create a new team them self.Promoting a team leaderCurrent team leaders can pass the role to other members of the team. Promoting a different team member will pass the role on and remove it from the prior team leader.In order to promote another team member to team leader:You must have a team leader roleIn the game, walk up to the new target leaderPress and hold the E button until the progress bar completesOnce completed, the new leader will now have the green check mark next to their name. If the team leader leaves with no additional team members, the team will automatically be disbanded. Otherwise when a team leader leaves, without promoting a replacement leader, the next player in the team roster will take over and be marked as the new team leader.Locating RUST team membersWhen a new RUST team member is added to your team roster, that player will now be able to be seen on the map. There will be a small green dot, with the team member’s in-game name displayed above it. Your avatar will remain as a yellow dot indicator on the map.In order to locate team members:You must first be in the same teamPress the G button to open the mapObserve the green dots with team member namesKicking a team memberIf a team member needs to be kicked, the team’s leader has the ability to individually remove team members through the interface. Team members can be removed regardless if they’re online or off, in the line of sight or not.In order to kick team members:You must be the team leaderHover the cursor over the team member to kickPress the Kick buttonOnce a player has been kicked, their name will be removed from the team roster. Their name tag and a dot will turn white.Frequently asked questions about RUST TeamsQuestionAnswerCan you disable the team system?RUST admins can disable the team system if they choose to for their server. It is enabled in the base Vanilla game by default.Can you join multiple teams?No, only one team per player.Can multiple teams align or join together?No, only one team of 8 players may be grouped together.Can you change the color of the team roster, dot, or names?No, colors cannot be modified in Vanilla.Can you see team members through walls, buildings, and geography?No, as of the Bandit Camp Update, this was modified so that line of sight is required to see your team members.Can team sizes be changed?Yes, teams sizes can
2025-03-27