steam游戏腐蚀怎么开服务器
㈠ 腐蚀怎么搭建服务器联机
联机玩法是游戏中非常有趣的一种模式,不过许多玩家目前似乎对腐蚀怎么搭建服务器联机不太了解,为了让大家可以更顺利的上手,于是深空高玩这里就为大家带来了游戏联机方法的详细介绍。
搭建服务器联机方法
Steam游戏后台服务器管理程序下载
但凡是Steam上的游戏,想要搭建游戏服务器都必须要有一个SteamCMD命令行的执行程序包,该程序的目的是快速下载和更新本地的游戏服务器程序。
下载完成后将该压缩包解压,将文件夹内的Steamcmd.exe 程序拷贝至你想要安装该程序的目录下,然后双击执行即可,等待命令行程序执行完毕。
Rust 服务器程序下载
想要下载Rust 服务器,需要执行一段SteamCmd程序的命令:
1. 进入刚才安装SteamCmd程序的目录,拷贝目录地址
2. Windows键+R键,在输入框中输入cmd 点击执行
3. 在衫基命令行中右键黏贴目录地址同时在后面加上steamcmd.exe 回车执行
4. 当命令行显示 steam 时,输入下孝塌袜列命令每行一个输入后回车
login anonymous ------以匿名的方式登录steam
force_install_dir c:
ustserver ------设置服务器的安装目录
app_update 258550 ------安装或者更新 ID为258550的游戏服务器
quit -------退出
上述命令中,c:
ustserver 该路径为你想要将Rust服务器安装的目录,替换成自己的即可。
下面放出一键更新和安装的批处理命令文件内容,该内容需要你在桌面右键创建一个空白的文件,保存时修改文件扩展名为.bat即可。即文件保存完成后其名字应该是 xxxx.bat 的windows批处理文件。不懂如何创建的可网络【创建windows批处理文件】
脚本内容如下:
@echo off
echo Starting Server Installation..
F:GameServersteamcmdsteamcmd.exe +login anonymous +force_install_dir D:RustServer +app_update 258550 +quit
echo Done.
注意第一个steamcmd.exe命令周围的双引号,必须是英文的。将上述命令的路径替换成自己的路径即可。
微变服务器参数修改方法及插件安装
下载了Oxide插件驱动后,解压可以获得一个名为 RustDedicated_Data 的文件夹。将该文件夹拷贝至游戏服务器目录覆盖即可。
此时需要先启动游戏服务器生成插件安装相关的文件和文件夹。
启动服务器同样适用windows批处理文件进行。脚本内容如下:
@echo off
:start
echo Starting Server...
echo 正在等待服务器启动,如果2分钟后服务器还没有启动,请按下Ctrl+c 关闭命令行,同时巧激启动任务管理器关闭RustDedicate.exe程序,重新启动脚本。
RustDedicated.exe -batchmode ^
+server.port 28015 ^
+server.level Proceral Map ^
+server.seed 86183952 ^
+server.worldsize 4000 ^
+server.maxplayers 50 ^
+server.hostname 你的服务器名称 ^
+server.description 你的服务器描述 ^
+server.url 你的服务器首页 ^
+server.headerimage 你的服务器详情页背景图片 ^
+server.identity 你的服务器数据文件夹名称 ^
+rcon.port 28016 ^
+squadmanager.squad_disable 0^
+rcon.password letmein ^
+bradley.enabled True ^
+bradley.respawndelayminutes 60 ^
+bradley.respawndelayvariance 1 ^
+heli.lifetimeminutes 15 ^
+decay.upkeep True ^
+decay.upkeep_heal_scale 1 ^
+decay.upkeep_inside_decay_scale 0.1 ^
+decay.upkeep_period_minutes 1440 ^
+rcon.web 1
拷贝脚本到批处理文件中,将批处理文件移动到游戏服务器的根目录执行,即可开启服务器。
server.hostname 后面的内容是服务器的名称
server.seed 86183952 后面的数字是服务器的地图种子
server.worldsize 后面的数字是地图的大小,最大为6000
server.description 后面的内容是服务器的描述信息
server.headerimage 后面的内容是服务器详情页面的背景图片
server.identity 后面的内容是服务器资料的文件夹保存名称。服务器数据保存在游戏服务器的根目录下的server目录下
server.maxplayers 后面的数字是服务器的最大人数
注意: 文字内容一定要使用英文双引号包围。
服务器启动后,即可在游戏服务器目录中看到oxide文件夹。
oxide文件夹下常用的目录有两个 config 和 plugins 。
config 目录为插件的配置文件目录
plugins 目录为插件的安装目录
同时还有一个文件
oxide.config.json 是Oxide插件驱动配置文件。
这里说一个小技巧: 安装Oxide驱动的服务器会自动在Rust游戏的模组【Modded】服务器列表中出现,而不是在社区【Community】服务器列表中出现。想让服务器在社区服务器【Community】列表中出现请修改oxide.config.json配置文件中的下述内容:
Options: {
Modded: true,
DefaultGroups: {
Players: default,
Administrators: admin
}
},
将上面的Modded属性的值改为false即可。
当然如果是公网服务器,这一步的时候应该就可以在社区服务器或者模组服务器列表中看到自己的服务器了
微变服务器参数修改方法及插件安装
这里再说下微变服务器需要的一些常用改变资源的插件及配置文件的设置。注明:所有的插件的配置文件都在游戏服务器根目录下oxideconfig 文件夹中,插件加载后会自动生成,然后修改就可以了。所有配置文件皆为JSON格式,很简单的文本描述文件,看不懂的网络一下3分钟学会。
中文服务器名称乱码解决方案
解决中文在服务器列表中的乱码很简单,编辑服务器启动脚本的时候,修改脚本的编码为GBK 或者GB2312即可,修改后,编辑好文件,在命令行启动时候最后会显示服务器名称,如果不是乱码,那么在服务器列表中也不会是乱码。
局域网联机方式
局域网中联机时,主机服务器启动后,想要加入服务器的同学,打开Rust后不要选择服务器,直接按下F1,输入
client.connect localhost:28015
将localhost 替换为服务器ip地址即可。
ip地址快速查看方法,windows键+R键 输入cmd回车,输入ipconfig 回车,其中192.168.xxx.xx即是本机的局域网ip地址。
说明下windows键位置,Ctrl和Alt中间的小窗户按键就是windows键。
个人pc映射到公网的方式
登录路由器管理界面,浏览器地址栏输入192.168.1.1 或者192.168.0.1 输入路由器管理密码即可登录。
然后找到路由器中IP地址与Mac绑定功能,不同品牌路由器位置不同请自行网络。
将需要映射到公网的服务器的ip和mac地址绑定,保证每次开机或者重连时ip地址不变。
然后找到路由器的DMZ主机功能,设置DMZ主机地址为服务器的局域网ip地址即可。DMZ主机功能,不同品牌路由器位置不同,请自行网络。
设置完成后,重启路由器即可生效。
说下插件配置更新的小技巧。服务器启动后的命令行允许输入服务器指令,安装了Oxide驱动的服务器,在需要更新服务器插件的配置时,可以直接输入: oxide.reload * 重新加载全部插件配置,或者oxide.reload 插件名称 重新加载指定插件的配置,即可生效。
㈡ 腐蚀怎么联机
1、解压
2、修改 LumaEmu.ini文件 [Player]PlayerName = XXXX(此为你的游戏名 自行修改) 修改完保存它.
3、启动 Rust Client.exe 而不是rust.exe
4、进入游戏界面 调出控制台(F1)输入指令:net.connect 127.0.0.1:28015
指令段式详解:net.connect ip_adress:port。ip_adress为你的服务器IP地址 port是端口
(此为默认 更多参数 可修改 服务端server.cfg)
附服务器:
IP:117.21.228.200 后台输入net.connect killeryo.xicp.net:28015
5、回车输入 等待连接
更多游戏指令请参考:
腐蚀RUST都有什么指令?rust腐蚀指令大全攻略分享
在这里说明一下为什么不是单个的 游戏端就能运行 因为这个游戏是多人游戏 只有多人游戏,所以需要服务端自建服务器 才能进行单人游戏 当然 这也可以建立私服.
Rust腐蚀破解版 怎么建立私服?用服务端运行的流程攻略教程
PS:如果游戏端出现问题 请等待一会儿 就好了 如果出现提示需要开启steam的 开着就行 可以不登陆.
㈢ 腐蚀怎么联机搭建服务器教程一览介绍_腐蚀怎么联机搭建服务器教程一览是什么
以下是改写后的文章内容:在热门游戏《腐蚀》即将上线之际,玩家们都渴望能与他人共同体验。本文将详细介绍如何进行游戏联机以及搭建服务器的过程,让玩家们轻松上手。
首先,从Steam游戏后台开始,你需要下载SteamCMD命令行程序,它能快速下载和更新服务器程序。获取地址为:https://steamcdn-a.akamaihd.net/client/installer/steamcmd.zip。下载后,解压并复制Steamcmd.exe到安装目录,双击运行。
接下来,要安装Rust服务器,你需要在命令行中使用SteamCMD。首先打开包含SteamCMD的目录,然后运行以下命令:login anonymous,设置服务器安装目录(如:c: ustserver),app_update 258550(更新ID为258550的游戏服务器),最后执行quit。确保替换路径至你的实际安装位置。
为了简化过程,可以创建一个Windows批处理文件,如xxxx.bat,包含以下内容:
@echo off
...(此处继续上述命令内容)...
批处理文件的创建方法,可以在搜索引擎中查找"创建Windows批处理文件"教程。
服务器设置好后,微变服务器参数可以进行修改,包括Oxide插件的安装和配置。Oxide插件驱动的config和plugins文件夹位于服务器根目录。另外,要注意中文服务器名称可能出现的乱码问题,只需在启动脚本中调整编码即可。
对于局域网联机,主机启动后,玩家输入特定指令(如client.connect localhost:28015)连接,将localhost替换为服务器IP。获取IP地址的方法是按Windows键+R输入cmd,然后输入ipconfig查找。
至于个人PC映射到公网,你需要在路由器管理界面进行设置,绑定服务器IP和MAC地址,并启用DMZ功能。完成这些步骤后,重启路由器,服务器配置就可与全球玩家互动。
最后,对于插件配置的更新,只需在服务器启动的命令行中输入oxide.reload命令即可。希望以上步骤对《腐蚀》的联机和服务器搭建提供清晰指导。
㈣ 正版rust怎么开服务器
整个流程细致复杂,每个环节都要注意,避免出错。
具体方法如下:
1、先在这输入你的名字
㈤ 腐蚀RUST游戏指令和服务器指令一览
腐蚀 RUST游戏指令和服务器指令一览,在服务器中,管理员也可以利用指令来管理游戏中不正当行为。下面就给大家带来腐蚀RUST基本指令及服务器指令大全,以供玩家们参考。
基本指令
(以下在聊天框内输入)
/msg【message a specified player(私信一个玩家)】
/me【Puts your text into a purple color(你的 文字 将以紫色发出)】
(以下在控制台内输入,按F1)
grass.on true/false 【Enables or disables grass; Improves FPS for some.(打开/关闭草地,可提高FPS)】
grass.displacement 【true/false Enables or disables grass displacements.(打开关闭草地 移动 )】
terrain.idleinterval 0-100 【Sets how often to draw unseen terrain; setting to 0 will disable.(远景更新平率,0为不允许)】
gui.show 【Turns the UI on.(显示用户界面)】
gui.hide 【Turns the UI off.(关闭用户界面)】
gui.show_branding 【Turns the branding UI in top-right corner on.(显示右上角的标识)】
gui.hide_branding 【Turns the branding UI in top-right corner off.(隐藏右上角的标识)】
net.connect "Server IP" 【Connect to a direct server IP.(连接服务器IP,Server IP出填写服务器的IP)】
net.disconnect 【Disconnects from a server.(断开服务器连接)】
net.reconnect 【Reconnect to the last server you were on.(重新连接上一个服务器)】
censor.nudity false 【Disabled censorship.(关闭裸体)】
suicide 【Kills your character allowing for a respawn.(自杀)】
quit 【Quits the game.(退出游戏)】
服务器指令
rcon.login "password" 【Use your 'Password' to login into Rcon via ingame console (F1)。(使用控制台登录服务器)】
status 【See how many players are online on server.(查看在线玩家数量)】
notice.popupall "message" 【Pops up a message for all players.(发送服务器公告,在每个玩家屏幕上弹出)】
find * 【Lists available console commands.(列出控制台指令)】
kick "player" 【Kicks player from the server.(踢出某个玩家)】
ban "player" or "steamid" 【Bans player. Doesn't kick him though.(封掉一个玩家)】
banid "steamid" "reason" 【Bans a steamid from the server.(封掉一个玩家的steamID,reason处可写理由,挂狗和无(B)素(I)质(U)狗去死吧)】
unbanall 【Unbans all players.(解封所有玩家)】
truth.enforce true/false 【Server kicks people automatically when they are doing "weird" things.(服务器自动踢出做奇怪事情的人,如卡BUG)】
save.all 【Saves world map and player inventory(服务器保存当前地图和玩家信息)。】
say [message] 【Sends a message to the person/s in-game globally.(以服务器身份说话)】
inv.giveplayer "player" "item" "amount" 【Gives 'Player' the 'Item'. Full name and Item name required. List of Items.(给玩家东西,“玩家”“物品”“数量”)】
inv.giveall "item" "amount" 【Gives all players 'Item'. Full Item name required. List of Items.(给所有人东西,“玩家”“物品”“数量”,比如节日的时候,可以作为惊喜,没人给一把枪什么的)】
dmg.godmode true/false 【Gives all logged in admins godmode.(开启/关闭所有人 创造 模式)】
crafting.cancel 【Cancels every single crafting job in progress for everyone.(取消制作任何东西)】
crafting.instant true/false 【Sets crafting to be instant for everyone.(开启/关闭瞬间制作)】
crafting.instant_admins true/false 【Sets crafting to be instant for logged in admins only.(开启/关闭管理员瞬间制作)】
crafting.timescale "amount" 【Sets the timescale of crafting to 'amount' (1 = default, 0.5 = half time)。(设置制作物品时间的速度,1为默认,0.5为一半时间)】
airdrop.drop 【Starts an airdrop.(进行一次物品空降)】
airdrop.min_players "amount" 【Starts airdrops only when minimum X players are online.(开始物品空降,当在线人数至少“X”人的时候)】
vehicle.spawn 【Spawns a car at your current position.( 放置 一辆车,在你当前位置,管理装B专用)】
server.hostname 【Sets a hostname.(设置服务器名称)】
server.clienttimeout "time"【Sets the time until someone times out. Good to fight item glitchers. (Default 2 minutes)(设置超时时长,默认为2分钟)】
server.pvp true/false 【Sets PVP on or off.(开启PVP)】
server.maxplayers "amount" 【Sets maximum amount of server slots.(设置最大玩家数量)】
sleepers.on true/false 【Sets sleepers on or off.(是否允许睡眠模式)】
env.time "amount" 【Sets the time of day to a specified value.(设置天的时间)】
falldamage.enabled true/false 【Turns fall damage on or off.(开启/关闭掉落伤害)】
RUST++ MOD
(以下在聊天框内输入)
基本命令
/share playername 【shares your doors with a player(共享你的门给一个玩家)】
/unshare playername 【unshares your doors with a player(解除对一个玩家的门共享)】
/help 【Shows commands(显示所有指令)】
/pm "playername" "message" 【private messages a player.(私聊一个玩家,名字必须写全)】
/r message here 【quick reply to last PM(快速回复上一个私聊你的玩家)】
/history 【Shows chat history, last 6 messages by default(显示前6个聊天内容)】
/players 【Shows online players(显示当前在线玩家)】
/location 【Shows the coordinates of the player(显示玩家的当前坐标)】
/ping 【shows latency between client and server(显示服务器的延迟)】
/starter 【gives a configurable starter kit(给予初始装备)】
/friends 【shows your friends list(显示朋友列表)】
/addfriend playername 【adds a player to your friends list(添加一个玩家为好友)】
/unfriend playername 【removes a friend(移除一个好友)】
/about 【shows server mod version(显示服务器版本)】
管理员命令
/announce message here 【ADMIN ONLY - announces a message to the server(发送服务器公告)】
/loadout 【ADMIN ONLY - spawns you an admin loadout set in the config file(生成一个管理操作记录在设置文件夹下)
RustEssentials MOD
(以下在聊天框内输入)
/access {on} 【(Gives the sender access to all doors,给予你打开所有门的权限)】
/access {off} 【(Revokes access to all doors from the sender,移除你打开所有门的权限)】
/airdrop 【(Spawns an airdrop with a random drop location,设置一次随地地点的空降)】
/airdrop【(Spawns an airdrop with a drop location at the specified player,设置一次空降给某个玩家)】
/ban【(Bans player with reason: "Banned by a(n)",封掉一个玩家)】
/ban[reason] 【(Bans player with reason,封掉一个玩家和愿意)】
/chan {g} 【(Joins the global chat,加入全球聊天屏道)】
/chan {global} 【(Joins the global chat,同上)】
/chan {d} 【(Joins the direct chat,加入一个特定聊天屏道)】
/chan {direct} 【(Joins the direct chat,同上)】
/give【(Gives the item to that player,给一个玩家指定物品)】
/give[amount] 【(Gives the amount of the item to that player,给一个玩家指定物品和数量)】
/give[item id] 【(Gives 1 of the item with the corresponding id to that player,给一个玩家指定的物品,这里用的是物品ID)】
/give[item id] [amount] 【(Gives the amount of the item with the corresponding id to that player,给一个玩家指定的物品和数量,这里用的是物品ID)】
/god【(Gives the specified player god mode,给指定玩家上帝模式)】
/heal *player name* 【(Heals the designated player,恢复指定玩家的血)】
/help 【(Returns available commands for your current rank,显示指令)】
/help [command without /] 【(Returns the documentation and syntax for the specified command,显示已经排除外的指令,without/后面填上你不想显示的指令)】
/history {1-50} 【(Returns the the last # lines of the chat history,查看聊天记录,1-50里面填你想查看前面多少条记录)】
/i【(Gives the item to you,给自己指定物品)】
/i[amount] 【(Gives the amount of the item to you,给自己指定物品和数量)】
/i [item id] 【(Gives 1 of the item with the corresponding id to you,给自己指定物品,这里用的是物品ID)】
/i [item id] [amount] 【(Gives the amount of the item with the corresponding id to you,给自己指定物品和数量,这里用的是物品ID)
/join 【(Emulates the joining of yourself, 模拟 自己加入游戏)】
/join【(Emulates the joining of a fake player,加入一个机器人到游戏中)】
/kick【(Kick player with reason: "Kicked by a(n)",踢出一个玩家)】
/kick[reason] 【(Kick player with reason,踢出一个玩家和愿意)】
/kickall 【(Kicks all users, except for the command executor, out of the server踢出所有玩家,除了输入这条指令者)】
/kill【(Kills the specified player,杀死一个指定玩家)】
/kit [kit name] 【(Gives the user the specified kit if the user has the correct authority level,给一个用户指定套装,当这个玩家有指定的权限的时候)
/kits 【(Lists the kits available to you,列出自己所有能用的套装)】
/leave 【(Emulates the leaving of yourself,模拟自己离开游戏)】
/leave【(Emulates the leaving of a fake player,模拟一个机器人离开游戏)】
/mute【(Mutes the player on global chat,禁言一个玩家)】
/online 【(Returns the amount of players currently connected,显示所有服务器在线玩家)】
/pm*message* 【(Sends a private message to that player,私聊某个玩家)】
/pos 【(Returns the player's position,显示玩家所在的坐标)
/reload {config/whitelist/ranks/commands/kits/motd/bans/all} 【(Reloads the specified file,重新加载指定的文件)】
/save 【(Saves all world data,保存世界数据)】
/say *message* 【(Says a message through the plugin,以服务器身份说话,在公屏上)】
/saypop *message* 【(Says a (!) dropdown message to all clients,弹出一段话,在玩家屏幕上)】
/saypop [icon] *message* 【(Says a dropdown message to all clients with designated icon),以icon的什么弹出一段话,在玩家屏幕上】
/share *player name* 【(Shares ownership of your doors with the designated user,共享门给指定玩家)】
/stop 【(Saves, deactivates, and effectively stops the server,停止服务器并保存)】
/time 【(Returns current time of day,显示当前世界时间)】
/time {0-24} 【(Sets time to a number between 0 and 24,设置当前世界时间)】
/time {day} 【(Sets time to day,设置为白天)】
/time {freeze} 【(Freezes time,冻住当前时间)】
/time {night} 【(Sets time to night,设置为晚上)】
/time {unfreeze} 【(Unfreezes time,解冻当前时间)】
/timescale 【(Returns the speed at which time passes,显示当前时间流逝速度)】
/timescale [#] 【(Sets the speed at which time passes. Recommended between 0 and 1. WARNING: THIS AFFECTS AIRDROPS,设置时间流逝速度,在0和1之间,警告!这个将影响到空降时间)】
/uid 【(Returns your steam UID,显示你的steamID)】
/uid *player name* 【(Returns that user's steam UID,显示指定玩家的steamID)】
/unban【(Unbans the specified player,解封指定玩家)】
/ungod【(Revokes god mode from the specified player,解除指定玩家的上帝模式)】
/unmute【(Unmutes the player on global chat,解除指定玩家的禁言)】
/unshare {all} 【(Revokes ownership of your doors from everyone,解除对所有玩家的门共享)
/unshare *player name*【(Revokes ownership of your doors from the designated user,解除对指定玩家的门共享)
/version 【(Returns the current running version of Rust Essentials,重置Rust Essentials模组的版本)
/whitelist {add} [UID] 【(Adds the specified Steam UID to the whitelist,把指定steamID添加至白名单)】
/whitelist {check} 【(Checks if you're currently on the whitelist,查询白名单)】
/whitelist {kick} 【(Kicks all players that are not whitelisted. This only work if whitelist is enabled,踢出所有在白名单的人,如果白名单已经启动)】
/whitelist {off} 【(Turns whitelist off,关掉白名单)】
/whitelist {on} 【(Turns whitelist on,打开白名单)】
/whitelist {rem} [UID] 【(Removes the specified Steam UID to the whitelist,移除指定steamID从白名单)】
㈥ 腐蚀怎么搭建服务器联机介绍_腐蚀怎么搭建服务器联机是什么
以下是改写后的文章:联机模式是腐蚀游戏中的重要乐趣,许多玩家可能对如何搭建服务器感到困惑。本文将提供详细的步骤来帮助你入门。
首先,你需要从Steam下载游戏后台服务器管理程序,这对于所有Steam游戏服务器搭建都是必需的。下载完成后,解压并复制Steamcmd.exe到你想安装的目录,双击运行。
接下来,为了安装Rust服务器,你需要在命令行中操作。打开安装SteamCmd的目录,启动命令行,输入以下命令:
- 登录匿名:login anonymous
- 指定服务器安装目录:force_install_dir "c: ustserver"
- 更新或安装服务器程序:app_update 258550
- 退出命令行:quit
其中,你需要将"c: ustserver"替换为你的实际服务器安装路径。创建一个批处理文件,包含这些命令,方便一键安装。
微变服务器的参数和插件安装也很关键。下载Oxide插件后,将其RustDedicated_Data文件夹替换到服务器目录。通过批处理启动服务器,并根据需要调整参数,如设置服务器名称、地图种子等。
如果服务器名称出现乱码,只需在脚本中修改编码。至于局域网联机,只需在Rust中输入特定的连接命令,而公网服务器的映射则需要在路由器设置中进行,确保服务器的IP地址固定并启用DMZ功能。
最后,对于插件配置的更新,可以在服务器启动后通过命令行轻松进行。以上就是关于腐蚀服务器搭建的全面指南,希望对你有所帮助。
㈦ 新rust腐蚀进服务器时进不去。出现下图提示
解决方法:
1、运行Rust Server文件夹下的Rust Server.exe,允许程序访问网络,等待命令行窗口显示Server Initialzed线提示安装msvcr120.dll,安装完成后根据32/64系统安装微软运行库。
2、运行Rust Client文件夹下的Rust Client.exe,启动并进入游戏---等待1分钟。运行Rust Server文件夹下的Rust Server.exe后在任务管理器里文件有执行。当时是错误的,CPU会被占到90%以上。
3、如果游戏端出现问题 请等待一会儿 就好了 如果出现提示需要开启steam的 开着就行 可以不登陆。这个画面要等一阵,可能会出现无响应的状态,等一等就行。