Difference between revisions of "User:Wendy Black/Arcane Knowledge"

From PRIMUS Database
Jump to: navigation, search
m
m
Line 13: Line 13:
 
:*Access the Tailor from anywhere
 
:*Access the Tailor from anywhere
 
::/bind F7 gensendmessage Tailor_Root Show
 
::/bind F7 gensendmessage Tailor_Root Show
 
+
:*Swap button to cycle 4 costumes
 +
::alias sc1 "setactivecostume 0 0 $$ bind F8 sc2"
 +
::alias sc2 "setactivecostume 0 1 $$ bind F8 sc3"
 +
::alias sc3 "setactivecostume 0 2 $$ bind F8 sc4"
 +
::alias sc4 "setactivecostume 0 3 $$ bind F8 sc1"
 +
:::'''Note:''' You need to wait a few seconds between changes or you will get an error message.
 
:*Use another costume to fly
 
:*Use another costume to fly
 
::/bind y "+PowerTrayExec 14$$ setactivecostume 0 0"
 
::/bind y "+PowerTrayExec 14$$ setactivecostume 0 0"
Line 23: Line 28:
 
:*I made F12 a quick swap of characters jumping to the selection screen.
 
:*I made F12 a quick swap of characters jumping to the selection screen.
 
::/bind F12 gotoCharacterSelect
 
::/bind F12 gotoCharacterSelect
 +
 +
  
 
=== Nonfunctional Commands ===
 
=== Nonfunctional Commands ===

Revision as of 14:48, 15 September 2017

Almost Heroes Character Biographies Costume Gallery Arcane Knowledge Talk Page


Arcane Knowledge

This is the place to learn about keybinding, game tips, and some general "behind the scenes" items to get the best game play. I won't be discussing hacks, exploits, and other prohibited activities. However the items I do discuss could be eliminated by Cryptic in the future. Many users don't seem to understand the game doesn't belong to us, we are borrowing it from Cryptic. I play the game as they intended so everything on this page is permitted in the game until Cryptic says otherwise. While this is not a page for discussion, feel free to contact me on my talk page, or leave comments in the discussion tab of this page.

Key Binds

  • Call up the Socrates Crime Computer
/bind F5 genbuttonclick Hud_Minimap_Socratesbutton
  • Call up the Zen/Questionite Exchange
/bind F6 CurrencyExchange
  • Access the Tailor from anywhere
/bind F7 gensendmessage Tailor_Root Show
  • Swap button to cycle 4 costumes
alias sc1 "setactivecostume 0 0 $$ bind F8 sc2"
alias sc2 "setactivecostume 0 1 $$ bind F8 sc3"
alias sc3 "setactivecostume 0 2 $$ bind F8 sc4"
alias sc4 "setactivecostume 0 3 $$ bind F8 sc1"
Note: You need to wait a few seconds between changes or you will get an error message.
  • Use another costume to fly
/bind y "+PowerTrayExec 14$$ setactivecostume 0 0"
/bind t "+PowerTrayExec 14$$ setactivecostume 0 1"
  • Same as above but using one key (F for example) as a toggle
/alias land "+PowerTrayExec 14 $$ setactivecostume 0 1 $$ bind f fly"
/alias fly "+PowerTrayExec 14 $$ setactivecostume 0 0 $$ bind f land"
/fly
  • I made F12 a quick swap of characters jumping to the selection screen.
/bind F12 gotoCharacterSelect


Nonfunctional Commands

This is a list of commands that don't work 100% or have been rendered useless.

  • Access the Exchange House from anywhere - Works for Neverwinter and Star Trek, but not here.
It seems to access the Champion's Auction you MUST be in the market at Millennium City.
This will make the window open but it has no search or posting ability.
/GenSendMessage Auction_Root Show

Combat Parser

Looking for how much damage per second (DPS) you are doing compared to others? A parser takes input data and builds structure, giving a clear representation of the input, checking for correct syntax in the process. Advanced Combat Tracker (ACT for short) is a generic game parser that requires a translation script for each game. You will need someone to either; A) help you make such a script, or B) hope that someone has already made the script.
Sourceforge has CombatLogParser specifically geared to operate for Cryptic's games. Since this program is written in Java, it is a cross platform tool for Windows, MAC, and Linux.
Both parsers mentioned above can analyze your combat log in real time (while you play) or after you are finished and have even logged out of the game. The data they provide allows one to track DPS among other aspects of all entities within gaming area. This gives the player a clear picture into what aspects of their character needs to be developed.

Using Chat to Search for Commands

Most key binds are self evident found in the Options of the game. How did I find the Socrates button? There are some /gen commands to search until you find what you need. I knew Socrates was a button but I started my search typing /gensendmessage soc at this point nothing was showing up. After typing the 3rd letter a prompt normally appears. Typing /gensendmessage hud gave me more than the screen could allow however /gensendmessage hud_soc revealed nothing I started using the alphabet hud_a, hud_b, hud_c, etc.. When I got to the letter m, I found hud_minimap_ next it revealed the rest for me.
You can open it using; /gensendmessage Hud_Minimap_Socratesbutton activate ... but /genbuttonclick is just shorter. Meanwhile I found; /gensendmessage MineSweeper_Root show Displays a Mine Sweeper game. Have fun searching!

Create New Commands with Alias

Alias is a command used to make one or more commands into something quick to type. Here are some examples;
  • Use local chat to tell your friends goodnight.
/Alias bye "Say Later, I have to get some sleep now."
  • Tell your team thank you.
/Alias ty "team Thanks a bunch!"
  • Make a series of quick commands for rapid decisions in combat.
/Alias boss "team I am on the boss, keep the minions busy."
/Alias sout "team Spread out give them more targets."
/Alias grup "team Group up to my position."
/Alias flef "team Flank the enemy on the left."
etc...
In the end it is a lot quicker to type /bye or /ty after all is done.