Stride Aliases

From LSWiki

(Difference between revisions)
Jump to: navigation, search

Revision as of 14:09, 14 June 2017

I will put aliases I feel like sharing here until I think up a more sensible way to organize them.

Contents

Inventory Management

First of all, have a container (sporrans 4 lyfe, a backpack or whatever will work too though), give it a nickname that is not shared by any item. The rest of this page will assume you have a sporran named spopo

All

  • drop, get, sell, do anything, drag elsewhere
set shared alias da to drop all except belongings except companions
set shared alias ga to get all except companions
set shared alias sellall to sell all except belongings except companions
set shared alias doa to $@ all except belongings except companions
set shared alias dra to get all except companions;$@;drop all except belongings except companions

Better with a spopo

  • get, put in, force put in (for kept items etc.), put in from ground
set shared alias fetch to open spopo;get $@ from spopo;close spopo
set shared alias stow to open spopo;put $@ in spopo;close spopo
set shared alias sstow to open spopo;put $@ in spopo!;close spopo
set shared alias stash to open spopo;get $@;put $@ in spopo;close spopo
  • look, drop, wear, wield, wield two-handed, count, count loot, get all
set shared alias check to open spopo;l in spopo;close spopo
set shared alias ditch to open spopo;get $@ from spopo;drop $@;close spopo
set shared alias don to open spopo;get $@ from spopo;wear $@;close spopo
set shared alias grab to open spopo;get $@ from spopo;wield $@;close spopo
set shared alias grabb to open spopo;get $@ from spopo;wield $@ two-handed;close spopo
set shared alias coun to open spopo;count $@ in spopo;close spopo
set shared alias stock to open spopo;count items except belongings in spopo;close spopo
set shared alias clean to open spopo;get all except belongings from spopo;close spopo

Equipment

Some trix for managing the gear you're wearing. I've omitted wield stuff because I never put away my sword, but it shouldn't be difficult to slot in the proper put! and get/wield commands. Also don't forget about the free command.

Quick Equip

Items with multi-word nicknames can be identified by any of the words in the name. Items that share words can be targeted as a group. Nickname different gear setups to have codes in them for easy management. Don't forget that you can use colours in nicknames as well to make visually parsing stuff much easier.

set nickname for helmet to helmet {{Yellow}QWER ASDF}
set nickname for left glove to lefty {{Yellow}QWER}
set nickname for right glove to righty {{Yellow}QWER}
set nickname for boots to booties {{Yellow}QWER}
set nickname for halfsuit to coolhalfsuit {{Yellow}QWER}
set nickname for fullsuit to fullsuit {{Yellow}ASDF}

Then swapping gear becomes easy

  • Naked, and two sets of gear
set alias nude to open spopo;put ASDFs in spopo!;put QWERs in spopo!;close spopo
set alias gearset1 to open spopo;put ASDFs in spopo!;get QWERs from spopo!;wear QWERs;close spopo
set alias gearset2 to open spopo;put QWERs in spopo!;get ASDFs from spopo!;wear ASDFs;close spopo

Quick Equip + non container items

Sometime items want to stay in your inventory and either don't belong, or can't be put in your container. This includes items such as matrices, gems of perpetuation/protection or what have you. They can be nicknamed with codes like above, and included in your setup aliases.

set nickname for matrix to mat INV
set nickname for gem of perpetuation to perp INV
set nickname for lucky coin to lc INV
  • Version 2 of gear swaps (extranude is the same as >sstow all)
set alias nude to open spopo;put ASDFs in spopo!;put QWERs in spopo!;get INVs from spopo;close spopo
set alias extranude to open spopo;put all in spopo!;close spopo
set alias gearset1 to open spopo;put ASDFs in spopo!;get QWERs from spopo!;wear QWERs;get INVs from spopo;close spopo
set alias gearset2 to open spopo;put QWERs in spopo!;get ASDFs from spopo!;wear ASDFs;get INVs from spopo;close spopo

Personally. My INV items are always a subset of belongings. Some of the above aliases may need to be modified if you intend to hold items that you aren't keeping. (sellall for example will want to have "except INVs" in it)

Meat Shield

Sometimes you are going to be in situations with fire and annihilation hazards. In such cases familiars and companions can be useful for protecting your posessions, if not your body. (remember that spoken follower orders take an extra heartbeat while familiar urge charms do not)

set nickname for companion or familiar to {{Double Rainbow}turdlinger}
  • stay put, disappear (for familiars), and get it back.
set alias hangonamo to open spopo;put all except companions in spopo!;drop turdlinger;give spopo to turdlinger;concentrate on urging turdlinger to stop following
set alias hangonamo to open spopo;put all except companions in spopo!;drop turdlinger;give spopo to turdlinger;say stop following to turdlinger
set alias osht to open spopo;put all except companions in spopo!;give spopo to turdlinger;concentrate on sending turdlinger to safety
set alias getitback to concentrate on urging turdlinger to follow MyOwnName;get spopo from turdlinger;get turdlinger
set alias getitbackplusgear to concentrate on urging turdlinger to follow MyOwnName;get spopo from turdlinger;get turdlinger;open spopo;get INVs from spopo;get QWERs from spopo;close spopo;wear QWERs

Consumables

These can apply to any mass produced comestible such as scrolls, food, oil flasks etc. They can be combined or interchanged depending on your style. Items that are normally randomly coloured will stack up nicely when nicknamed.

9buy scroll of recall
  • Blank Scrolls
set shared alias stowscrolls to open spopo;for scrolls of recall do set nickname for each to {{white}blank tp};put blank tps in spopo;close spopo
  • Set a scroll (setscroll lh tp)
set shared alias settp to open spopo;get blank tp from spopo;set nickname for blank tp to {{white}$@};read $@ aloud;put $@ in spopo;close spopo
set shared alias setkeeptp to open spopo;get blank tp from spopo;set nickname for blank tp to {{white}$@};read $@ aloud;keep $@;put $@ in spopo;close spopo

Maybe there are multiple types of scroll you like to use...

9buy scroll of limb regeneration
9buy scroll of recall
  • Blank Scrolls version 2
set shared alias stowscrolls2 to open spopo;for scrolls of recall do set nickname for each to {{white}blank tp};for scrolls of limb regeneration do set nickname for each to {{brown}limb scroll};put blank tps in spopo;put limb scrolls in spopo;close spopo
  • read a scroll open ended (rs lh tp aloud to friendo), or simply read scroll aloud
set shared alias rs to open spopo;get $@ from spopo;close spopo;read $@
set shared alias rsa to open spopo;get $@ from spopo;close spopo;read $@ aloud

You can add nickname codes in here to use for omitting these items from the clean and stock aliases above.

  • similar aliases work here. You get the idea
set shared alias iden to open spopo;get lens of insight from spopo;close spopo;l $@ through lens of insight
set shared alias comp to open spopo;get lens of analysis from spopo;close spopo;l $@ through lens of analysis
set shared alias fuel to open spopo;get flasks of oil from spopo;for lanterns do refuel each from flask;for lanterns do refuel each from flask;put flasks of oil in spopo;close spopo
set shared alias munch to open spopo;get fooditems from spopo;eat fooditem;eat fooditem;eat fooditem;eat fooditem;eat fooditem;put fooditems in spopo;close spopo
set shared alias quench to open spopo;get drinkitems from spopo;drink drinkitem;drink drinkitem;drink drinkitem;drink drinkitem;drink drinkitem;put drinkitems in spopo;close spopo

Portable Holes

It should be possible to restructure all of the spopo aliases above to start with drop phol and end with get phol. Personally I don't use them, but I suppose they can be good?

Misc Useful

Others have already written their own personal versions of this stuff. A lot of commands depend on the incarnos and on player preference, but here are some of the generic ones I use that are not related to inventory management.

  • meta
set shared alias sra to show raw aliases like $@
  • movement
set shared alias ss to show exits
set shared alias ww to wander;show exits
set shared alias sc to look around for beings except companions
set shared alias scc to look around for beings
set shared alias tf to switch terrain following mode
set shared alias det to determine location
set shared alias sur to open spopo;get panoramicon from spopo;survey;put panoramicon in spopo;close spopo
  • combat
set shared alias fic to switch filtering of insigcmb
set shared alias nrg to show energies
set shared alias xpp to show companion advancement and level and experience needed
set shared alias sq to open spopo;get my_nicknamed_pibrit from spopo;squeeze my_nicknamed_pibrit;put my_nicknamed_pibrit in spopo;close spopo
set shared alias eff to set effort to $@
set shared alias sca to set attack scatter to 100
set shared alias sco to set attack scatter to 0
set shared alias hea to set strike location to heads
set shared alias vit to set strike location to vitals
set shared alias bal to set combat mode to balanced
set shared alias rec to set combat mode to all-out
set shared alias def to set combat mode to defensive
  • First aid
set shared alias st to treat me
set shared alias stt to treat me;for companions here do treat each
set shared alias lh to show health of me & companions
  • looting
set shared alias loot to get all except remains except warpstones from all remains;get all items except all remains except warpstones
set shared alias loott to get all except warpstones from all remains;drop all remains;get all except warpstones from all remains;drop all remains;get all items except all remains except warpstones
set shared alias gol to get all coins;get all coins from all corpses
set shared alias mun to open spopo;put 30000 coins in spopo;close spopo
  • exploration [of companion] works
set shared alias sle to show local exploration
set shared alias sge to show global exploration
set shared alias sep to show exploration points
  • managing attacks can be annoying. I usually make custom aliases on a character by character basis
set shared alias sa to show attacks
set shared alias spa to show potential attacks
set shared alias aw to stop attacking with all;start attacking with $@
set shared alias brawl to stop attacking with right hand;stop attacking with left hand;stop attacking with right claw;stop attacking with left claw;stop attacking with punch;stop attacking with kick;stop attacking with uppercut;stop attacking with rising torrent;stop attacking with headbutt;stop attacking with eye gouge;stop attacking with elbow smash
  • fire
set shared alias ex to extinguish me
set shared alias exx to extinguish me;for my items do extinguish each
  • companions
set shared alias suc to succor companions
set shared alias succ to dismount;succor companions;mount nicknamed_mount_code
set shared alias gw to get companions except nicknamed_mount_code
set shared alias dd to drop companions!
  • keeping (sk should end in "all of which will leave the world with you." this is more useful than cap when your keep list is pages long and you just want to make sure you're not missing anything)
set shared alias sk to show keeping
set shared alias cap to show keep capacity and keep usage
  • Changes and events
set shared alias ses to show events since
set shared alias scs to show changes since
set shared alias pcr to perform change rating
  • Specs (open ended, ssp int, ssa wil etc. works nicely)
set shared alias ssp to show specialty points and specialties
set shared alias ssd to set specialty degree in
set shared alias ssa to show specialty access
set shared alias stats to show attributes and attribute development and attribute development points
  • because I ain't got no time for this shit
set shared alias pl to pull lever;press button;flip switch;open coffin;pull handle;turn handle

Character/Affil Specific Aliases

  • Posture variants. Transitioning from stance to stance, and how specifically you define them will vary from character to character, but I find it very useful to set up various posture aliases for my characters. The simplest and most common is flying/fighting, but they can get more detailed.
set alias takeoff to open spopo;put heavy_things and equipped weapon in spopo!;get nicknamed_ring_of_flight from spopo;close spopo;wear nicknamed_ring_of_flight
set alias land to open spopo;put nicknamed_ring_of_flight in spopo!;get heavy_things and equipped weapon from spopo!;close spopo;wield weapon_thing;wear armour_things
set alias burstdown to set combat mode to balanced;set attack scatter to 0;set effort to 150;set strike location to heads;concentrate on urging my_familiar to set combat mode to all-out;concentrate on urging my_familiar to set attack scatter to 0;concentrate on urging my_familiar to set effort to 150;concentrate on urging my_familiar to set strike location to heads;start defending with all;stop attacking with all;start attacking with my_best_attack;tap manipura chakra;open spopo;get potion of heroism from spopo;get cool_thing from spopo;close spopo;wear cool_thing;drink potion of heroism
set alias regularstance to set combat mode to balanced;set attack scatter to 100;set effort to 110;set strike location to heads;concentrate on urging my_familiar to set combat mode to all-out;concentrate on urging my_familiar to set attack scatter to 100;concentrate on urging my_familiar to set effort to 130;concentrate on urging my_familiar to clear strike location;start defending with all;stop attacking with all;start attacking with my_various_attacks;tap kalila chakra
set alias nodeflection to stop defending with my_nicknamed_weapon;stop defending with left_forelimb;stop defending with right_forelimb;set combat mode to balanced;set attack scatter to foo;set effort to bar;set strike location to baz;concentrate on urging my_familiar to set combat mode to all-out;concentrate on urging my_familiar to set attack scatter to foo;concentrate on urging my_familiar to set effort to bar;concentrate on urging my_familiar to set strike location to baz;stop attacking with all;start attacking with my_favorite_attacks
set alias nodefense to stop defending with all;set combat mode to all-out;concentrate on urging my_familiar to set combat mode to defensive;stop attacking with all;start attacking with my_favorite_attacks
  • rune of the keeper variations
set alias tp to free left hand_or_claw;quickdraw wand from holster;perform the inscription of the rune of the keeper;holster wand in holster;wield my_nicknamed_weapon;touch black ash rune
set alias tpp to free left hand_or_claw;open spopo;get wand from spopo;hold wand;perform the inscription of the rune of the keeper;put wand in spopo;close spopo;wield my_nicknamed_weapon;touch black ash rune
set alias tps to free left hand_or_claw;quickdraw wand from holster;perform the inscription of the rune of the keeper;holster wand in holster;wield my_nicknamed_weapon;set attack scatter to 100;set combat mode to balanced;touch black ash rune;assist town guards
  • Garlic decharge variants
set alias xsva to concentrate on transferring energy from my svadhisthana chakra to my vishuddha chakra;concentrate on transferring energy from my svadhisthana chakra to my muladhara chakra;concentrate on transferring energy from my svadhisthana chakra to my anahata chakra;concentrate on transferring energy from my svadhisthana chakra to my manipura chakra;concentrate on transferring energy from my svadhisthana chakra to my ajna chakra;concentrate on transferring energy from my svadhisthana chakra to my sahasrara chakra;concentrate on transferring energy from my svadhisthana chakra to my padme chakra;concentrate on transferring energy from my svadhisthana chakra to my kalila chakra;
set alias xfera to concentrate on transferring energy from my $@ chakra to my svadhisthana chakra;concentrate on transferring energy from my $@ chakra to my vishuddha chakra;concentrate on transferring energy from my $@ chakra to my muladhara chakra;concentrate on transferring energy from my $@ chakra to my anahata chakra;concentrate on transferring energy from my $@ chakra to my manipura chakra;concentrate on transferring energy from my $@ chakra to my ajna chakra;concentrate on transferring energy from my $@ chakra to my sahasrara chakra;concentrate on transferring energy from my $@ chakra to my padme chakra;concentrate on transferring energy from my $@ chakra to my kalila chakra;
  • Trav aura modes
set alias svad to tap svadhisthana chakra
set alias vish to tap vishuddha chakra
set alias mula to tap muladhara chakra
set alias anah to tap anahata chakra
set alias mani to tap manipura chakra
set alias ajna to tap ajna chakra
set alias saha to tap sahasrara chakra
set alias padm to tap padme chakra
set alias kali to tap kalila chakra
Personal tools