Difference between revisions of "Unturned: OpenMod"

From Free Knowledge Base- The DUCK Project: information for everyone
Jump to: navigation, search
m (Troubleshooting)
m (WARNING! SCAM ALERT!)
 
(6 intermediate revisions by one user not shown)
Line 1: Line 1:
OpenMod is the successor of RocketMod. OpenMod supports all RocketMod pluginsPlugins add new functionality to your server. OpenMod provides commands to download, install, update, and remove plugins at runtime.  You can convert from RocketMod to OpenMod using their installation and conversion script.  Plugins from https://imperialplugins.com/ mostly require OpenMod, if not exclusively.
+
OpenMod claims to be but is NOT a real successor of RocketMod. LDM is the legitimate successor of RocketMod.  OpenMod is supposed to be a replacement for Rocket. It is, however, not recommended.  You will experience compatibility issues and your server will take much longer to boot if you install this.
  
* [[Unturned]] the game -> [[Unturned: Server]] -> Unturned: OpenMod
+
OpenMod provides commands to download, install, update, and remove plugins at runtime.  You can convert from RocketMod to OpenMod using their installation and conversion script. 
  
== Installation ==
+
== WARNING! SCAM ALERT! ==
 +
An organization called ImperialPlugins operated by [[Enes Sadık Özbek]] sells plugins for Unturned.  You have to pay for a license for each plugin.  In order for the plugin to work, the license has to be validated each time you boot the Unturend serer, which for many is typically daily.  The License Server is frequently offline, leaving server owners without access to the plugins purchased from ImperialPlugins.
  
Installing OpenMod for Unturned (RocketMod plugin)
+
'''ImperialPlugins Scam''' - The Unturned video game community should be advised of this scam. Perpetrator Enes Sadık Özbek receives funds and denies access to licensed product.
#Download the latest OpenMod Installer Plugin for RocketMod.
+
#Move it to the /Rocket/Plugins folder and restart your server.
+
#Run /openmod install and follow the instructions.
+
  
* Instructions echo'd from: https://openmod.github.io/openmod-docs/userdoc/installation/unturned.html
+
Enes Sadık Özbek will revoke customer licenses without cause and prior notification. Enes Sadık Özbek does not refund the customer. This is a scam and results in customers incurring a financial loss once they discover that their access to ImperialPlugins has been revoked without cause and without justification.
* Download from: https://github.com/openmod/OpenMod.Installer.RocketMod/releases/tag/1.0.0-beta3
+
  
== Installing and Updating Plugins ==
+
'''Avoid Imperial Plugins''' - Scam Alert - '''Enes Sadık Özbek''' is unethical and a known scammer.
There are two ways to install plugins:
+
  
Option 1: Installing plugins from NuGet. You can install plugins from NuGet using the openmod install <package id> command, e.g. openmod install Kr4ken.NewEssentials. To install specific versions, use openmod install <package id>@<version>. If you want to enable installation of pre-release versions, add the -Pre option: openmod install <package id> -Pre. To update plugins, run openmod install <package id> again.
+
* [[Unturned]] the game -> [[Unturned: Server]] -> Unturned: OpenMod
  
Option 2: Installing plugins manually. You can install plugins manually by moving the plugin dll file and all libraries of the plugin to the openmod/plugins folder. You can also install libraries with openmod install <package id> instead. To update plugins replace the .dll file with the newer one.
+
== Installation ==
 
+
You must reload OpenMod with openmod reload to apply changes after installing or updating plugins.
+
 
+
== Specific Plugins (examples) ==
+
=== SilK's ShopsUI ===
+
To install the SilK's Plugin called ShopsUI you must first purchase the plugin from imperialplugins.com
+
 
+
1. Purchase the plugin and obtain the license key.
+
 
+
2. Download the zip file from your purcahase.  In this case it is openmod-ImperialPluginsLoader.zip
+
 
+
3. With the Unturned server running execute the following commands in the console:
+
openmod install OpenMod.EntityFrameworkCore.MySql
+
openmod install SilK.Unturned.Extras
+
 
+
4. Stop the Unturned Server and ensure it is not running. Extract contents and then upload them to the Unturned serer.  Specific files go in specific places. 
+
* Copy (2) files from the archive folder called "native" to: Servers/unturned/OpenMod/native
+
:* Those two files are ImperialPluginsNativeLoader.dll and ImperialPluginsNativeLoader.so
+
* Copy (2) files from the  archive folder called "plugins to: Servers/unturned/OpenMod/plugins
+
:* Those two files are ImperialPlugins.Loader.dll and K4os.Compression.LZ4.dll
+
 
+
5. Now edit "config.yaml" in the OpenMod/Plugins/ImperialPlugins.Loader folder.
+
* Edit Servers/unturned/OpenMod/plugins/ImperialPlugins.Loader/config.yaml
+
:* Here you will have to use YOUR license key.  In this example I show a DUMMY KEY that will not work.  Replace with your valid key that you received when you purchased the plugin.
+
Plugins:
+
- Product: "Shops-UI"
+
  Branch: "openmod"
+
  BranchPassword:
+
  LicenseKey: "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
+
  Enabled: true
+
 
+
6. Edit the WorkshopDownloadConfig.json file where all of the IDs of your various mods are located.  Add the following to the list:
+
2412328215
+
 
+
7. Start your Unturned server.  New directories will be created.  Once fully loaded shut down the server once again.
+
 
+
8. Now edit Servers/unturned/OpenMod/plugins/ShopsUI/config.yaml
+
* configure the connection string for your MySQL database.  See example:
+
default: "Server=192.168.54.16; Database=openmod; Port=3306; User=myusername; Password=somepassword"
+
* configure other options, like if you want to enable the blacklist and whitelist.
+
 
+
9. Start the server.
+
 
+
There are many configuration options.  One of the more difficult options is taking advantage of the blacklist and whitelist feature.  Lets do an example where we want just certain things in the shop to only be purchasable by players in a specific permissions group.  We will have vehicles that only players in the cardealer group can buy, but other players can not.  First, we must add the car to the shop, then whitelist the car to the cardealer permissions group.  Use these command examples:
+
/vshop add 31 120
+
/vshop whitelist add 31 cardealer
+
We added a sedan to the shop at a cost of $120.  The whitelisted it so only people in the permission group cardealer can buy it.  Now we have to edit Permissions.config.xml to create the cardealer group and give it the correct permission for ShopUI whitelist.  See this example entry:
+
    <Group>
+
      <Id>cardealer</Id>
+
      <DisplayName>cardealer</DisplayName>
+
      <Prefix />
+
      <Suffix />
+
      <Color>white</Color>
+
      <Members>
+
        <Member>7656119XXXXXXXXXX</Member>
+
        <Member>7656119XXXXXXXXXX</Member>
+
      </Members>
+
      <ParentGroup>default</ParentGroup>
+
      <Priority>100</Priority>
+
      <Permissions>
+
        <Permission Cooldown="90">essentials.kit.shopkeeper</Permission>
+
        <Permission Cooldown="1">ShopsUI:commands.vshop</Permission>
+
        <Permission Cooldown="1">ShopsUI:commands.buy</Permission>
+
        <Permission Cooldown="0">ShopsUI:groups.cardealer</Permission>
+
      </Permissions>
+
    </Group>
+
You wont need the kit entry, but it is present to demonstrate how the inherited permissions work.
+
 
+
==Removing Plugins==
+
To remove plugins which have been installed using openmod install, use openmod remove <package id>. If you installed the plugin manually instead, delete the .dll file.
+
 
+
==Troubleshooting==
+
Problems arise from time to time when Nelson releases Unturned updates that create incompatibilities with OpenMod.  The track record is that server performance issues, crashing, and excessive error entries in the log are the result of OpenMod incompatibilities or specific mods like ShopUI that use OpenMod.  Developers follow up with updates that typically resolve this issues.  It is important to watch for OpenMod to release an update within a day or two after an Unturned update and then apply that update ASAP.
+
 
+
* Obtain the latest OpenMod Update from: https://github.com/openmod/openmod/releases/
+
* Apply the OpenMod Update to the path: /Servers/unturned/OpenMod/packages
+
 
+
In Better Detail: NELSON RELEASED HIS USUAL FRIDAY UPDATE THAT BREAKS THE HELL OUT OF IMPERIALPLUGINS AND OPENMOD
+
  
You have to let the Unturned Server update.  It needs to update and finish loading completelyThen you need to shut it down when you
+
<big><big>Due to the discovery that OpenMod is related to Turkish software developer Enes Sadık Özbek Plugin Scam operation the installation guide has been removedYou are advised to
notice that your ImperialPlugins and OpenMod plugins are not working.
+
avoid OpenMod.
 +
</big>
  
Follow these steps:
+
Use only [[Unturned: RocketMod]] Legally Distinct Missile aka LDM plugins for your server to avoid being scammed. 
  
# Download the file OpenMod.Unturned.Module.zip from https://github.com/openmod/openmod/releases
+
</big>
# Navigate to /home/container/Modules/OpenMod.Unturned
+
# Delete /home/container/Modules/OpenMod.Unturned
+
# Copy contents of OpenMod.Unturned.Module.zip which is the OpenMod.Unturned folder to /home/container/Modules/
+
  
 
[[Category:Computer_Technology]]
 
[[Category:Computer_Technology]]
 
[[Category:Software]]
 
[[Category:Software]]
 
[[Category:PC Gaming]]
 
[[Category:PC Gaming]]

Latest revision as of 03:54, 11 June 2022

OpenMod claims to be but is NOT a real successor of RocketMod. LDM is the legitimate successor of RocketMod. OpenMod is supposed to be a replacement for Rocket. It is, however, not recommended. You will experience compatibility issues and your server will take much longer to boot if you install this.

OpenMod provides commands to download, install, update, and remove plugins at runtime. You can convert from RocketMod to OpenMod using their installation and conversion script.

WARNING! SCAM ALERT!

An organization called ImperialPlugins operated by Enes Sadık Özbek sells plugins for Unturned. You have to pay for a license for each plugin. In order for the plugin to work, the license has to be validated each time you boot the Unturend serer, which for many is typically daily. The License Server is frequently offline, leaving server owners without access to the plugins purchased from ImperialPlugins.

ImperialPlugins Scam - The Unturned video game community should be advised of this scam. Perpetrator Enes Sadık Özbek receives funds and denies access to licensed product.

Enes Sadık Özbek will revoke customer licenses without cause and prior notification. Enes Sadık Özbek does not refund the customer. This is a scam and results in customers incurring a financial loss once they discover that their access to ImperialPlugins has been revoked without cause and without justification.

Avoid Imperial Plugins - Scam Alert - Enes Sadık Özbek is unethical and a known scammer.

Installation

Due to the discovery that OpenMod is related to Turkish software developer Enes Sadık Özbek Plugin Scam operation the installation guide has been removed. You are advised to avoid OpenMod.

Use only Unturned: RocketMod Legally Distinct Missile aka LDM plugins for your server to avoid being scammed.