Skip to content

Instantly share code, notes, and snippets.

@KinoAR
Created November 25, 2016 18:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save KinoAR/2cbdd88ee0964bc38f725c9d502fa3e4 to your computer and use it in GitHub Desktop.
Save KinoAR/2cbdd88ee0964bc38f725c9d502fa3e4 to your computer and use it in GitHub Desktop.
Saber Heart Script Calls
//=============================================================================
// Script Calls
//=============================================================================
Saber.getWeapon(weaponName)
//Example
Saber.getWeapon("Rampart");
//Gets the weapon by the name in the database.
Saber.levelupWeapon(weaponName);
//Example
Saber.levelupWeapon("Rampart");
//Levels up the weapon.
Saber.leveldownWeapon(weaponName);
//Example
Saber.leveldownWeapon("Rampart");
//Levels down the weapon.
Saber.setWeaponLevel(weaponName, level);
//Example
Saber.setWeaponLevel("Rampart", 30);
//Sets the weapon to the specified level.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment