I25 FAQ: Difference between revisions

From OuroDev
No edit summary
Line 71: Line 71:
=== Server IDs ===
=== Server IDs ===
<ol start="0">
<ol start="0">
<li> 0] (empty server list) </li>
<li>(empty server list) </li>
<li> 1] Paragon </li>
<li>Paragon </li>
<li> 2] Cryptic</li>
<li>Cryptic</li>
<li> 3] Bree</li>
<li>Bree</li>
<li> 4] Undying</li>
<li>Undying</li>
<li> 5] Phoenix</li>
<li>Phoenix</li>
<li> 6] Rebirth</li>
<li>Rebirth</li>
<li> 7] Resurgence</li>
<li>Resurgence</li>
<li> 8] Titan</li>
<li>Titan</li>
<li> 9] Unity</li>
<li> Unity</li>
<li> 10] Torchbearer</li>
<li>10] Torchbearer</li>
<li> 11] Unstoppable</li>
<li>11] Unstoppable</li>
<li> 12] Perseverant</li>
<li>12] Perseverant</li>
<li> 13] Indomitable</li>
<li>13] Indomitable</li>
<li> 14] Timeless</li>
<li>14] Timeless</li>
<li> 15] Everlasting</li>
<li>15] Everlasting</li>
<li> 16] Excelsior</li>
<li>16] Excelsior</li>
<li> 17] CoHWorldServer_17</li>
<li>17] CoHWorldServer_17</li>
<li> 18] CoHWorldServer_18</li>
<li>18] CoHWorldServer_18</li>
</ol>
</ol>

Revision as of 02:04, 26 April 2019

How do I create an account?

  • You can use the PowerShell script in downloads or execute a query against the database manually.
  • Create NEW USER: test / password
    • INSERT INTO cohauth.dbo.user_account (account, uid, forum_id, pay_stat) VALUES ('test', 1, 1, 1014);
    • INSERT INTO cohauth.dbo.user_auth (account, password, salt, hash_type) VALUES ('test', CONVERT(BINARY(128),'46ffce3efcfe83bfa205b076d7c2084b9dcf04cdb26f9019103cde29779d26a85216b2c0f43ba1a8fb9b7fa22f05a949bf4edc314af27629e8fc23014e77a24d'), 0, 1);
    • INSERT INTO cohauth.dbo.user_data (uid, user_data) VALUES (1, 0x0080C2E000D00B0C000000000CB40058);
    • INSERT INTO cohauth.dbo.user_server_group (uid, server_group_id) VALUES (1, 1);
  • Crust First's web-based tool for generating SQL queries to create new accounts

How do I make a GM Character?

  • UPDATE [cohdb].[dbo].[Ents] SET [AccessLevel] = 10 WHERE [Name] = 'charnamehere'
  • You can also set DefaultAccessLevel to 10 in servers.cfg, but this will only work for characters made after you make this change. You'll also need to restart DBServer after this change.
  • Login to the game and type /mmm to bring up an admin menu. All commands are also listed in Commands.cfg

How do I pimp my ride in game?

  • If your character is an admin type /autoenhance, /autoenhanceio, or /autoenhanceset. You can find many of commands in C:\COH\data\server\db\commands.cfg
  • You can also type /mmm, scroll down to Design Testing, EnhanceAndInspire, Enhancements, and give yourself whatever you want.

How do I unlock all the good medals?

  • AtlasSet (Received the Atlas Medallion) (Tourist) (Atlas Shrugged) [Adds 'The Atlas Medallion' passive power]
  • Marshal (Ex-Marshal) (Marshal) [Adds the 'Marshal' passive power]
  • DimensionalHopperSet (Portal Jockey) [Adds 'Portal Jockey' passive power]
  • BornInBattle (Born in Battle) [Adds the 'Born In Battle' passive power]
  • FreedomPhalanxSet (Freedom Phalanx Reserve Member) (Freedom Phalanx Fallen) [Adds 'Freedom Phalanx Reserve' passive power]
  • HighPainThreshold (Gotten Soft) (High Pain Threshold) [Adds 'High Pain Threshold' passive power]
  • TaskForceCommander (Task Force Commander) (Task Force Abandoner) [Adds 'Task Force Commander' passive power]
  • MayhemInvader (Return Visitor) (Invader) [Adds 'Invader' passive power]
  • Paragon (Paragon) [Unlocks 'Assemble the Team' power in the P2W Vendor under 'Prestige Powers > Travel > Teleport']
  • UnbrokenSpirit (The Unbroken Spirit) [Unlocks 'Renewal of Light' power in the P2W Vendor under 'Prestige Powers > Utility > Miscellaneous']
  • P_Relentless (Relentless) [Unlocks 'Return to Battle' power in the P2W Vendor under 'Prestige Powers > Utility > Miscellaneous']
  • InventorAccolade (Field Crafter) [Adds 'Portable Workbench' power]
  • ArchitectAccolade (Mission Engineer) [Adds 'Architect Comlink' power]
  • GoldClub (Pocket D VIP Gold Club Member) [Adds 'Pocket D VIP Pass' power]
  • CreySet (Conspiracy Theorist) [Adds the 'Crey CBX-9 Pistol' power]
  • HeadlineStealer (Yesterday's News) [Adds 'Stolen Immobilizer Ray' power]
  • RIWEAccolade (Watchwoman) [Adds 'Elusive Mind' power]
  • MagusSet (Archmage) (Arch-Mage of Agony) [Adds 'Eye of the Magus' power]
  • Demonic (Exorcised) (Demonic) [Adds 'Demonic Aura' power]
  • Megalomaniac (In Therapy) (Megalomaniac) [Adds 'Megalomaniac' power]
  • RiktiWarSet (Vanguard) [Adds 'Vanguard Medal' power]
  • GeasoftheKindOnes (Geas of the Kind Ones) [Adds 'Geas of the Kind Ones' power]
  • MayhemForceOfNature (Force of Nature) (Uninsurable) [Adds 'Force of Nature' power]

Why does my server show offline?

  • First make sure you've added your server into the database. You can do so with the code below.
    • INSERT INTO cohauth.dbo.server (id, name, ip, inner_ip, ageLimit, pk_flag, server_group_id) VALUES (1, 'Bree', '127.0.0.1', '127.0.0.1', 0, 0, 1);

Why does my AuthServer say "Non-registered world server X.X.X.X"?

  • Make sure the server is in the cohauth
    • INSERT INTO cohauth.dbo.server (id, name, ip, inner_ip, ageLimit, pk_flag, server_group_id) VALUES (1, 'Bree', '127.0.0.1', '127.0.0.1', 0, 0, 1);
    • INSERT INTO cohauth.dbo.worldstatus (idx, status) VALUES (1, 1);

Why does my DBServer say "login failed for user sa" when starting?

  • Most likely you've entered the string wrong in account_server.cfg or another file.
  • It could be that the sa account is still disabled as well. Double check SMSS to verify.
  • If you've entered it correctly make sure restarted the service after the changes from the guide.

My AuctionServer is running but why players can't list items?

  1. Most likely your auction_server.cfg is incorrect.
    • ShardIp 127.0.0.1
    • SqlDbName cohauc
    • SqlLogin "DRIVER={SQL Server Native Client 11.0};Server=localhost\SQLEXPRESS;Uid=sa;Pwd=YOURL33TPASS;"
  2. Start AuctionServer64.exe

Why is my MapServer displaying popups?

  • Most likely your server.cfg is set to -filedebug. Change to this -nopopup to no longer see windows from it.

Why aren't my Architect Missions aren't publishing?

  • Most likely you are missing the "missionserver" folder. Create one in the root of your server directory and start MissionServer again. For me this is C:\COH\missionserver.

Server IDs

  1. (empty server list)
  2. Paragon
  3. Cryptic
  4. Bree
  5. Undying
  6. Phoenix
  7. Rebirth
  8. Resurgence
  9. Titan
  10. Unity
  11. 10] Torchbearer
  12. 11] Unstoppable
  13. 12] Perseverant
  14. 13] Indomitable
  15. 14] Timeless
  16. 15] Everlasting
  17. 16] Excelsior
  18. 17] CoHWorldServer_17
  19. 18] CoHWorldServer_18