Skip to content

Instantly share code, notes, and snippets.

View bhooten's full-sized avatar
💾
using 3.25" floppies

Bradley Hooten bhooten

💾
using 3.25" floppies
View GitHub Profile
Option Explicit
Function SpellNumber(ByVal mn_MyNumber)
Dim mn_Dollars, mn_Cents, mn_temp_value
Dim mn_decimal_place, mn_count
ReDim mn_place(9) As String
mn_place(2) = " Thousand "
mn_place(3) = " Million "
mn_place(4) = " Billion "

Keybase proof

I hereby claim:

  • I am bhooten on github.
  • I am intelinside (https://keybase.io/intelinside) on keybase.
  • I have a public key ASBY-K-oK_5OIcgkhkK3gh09n6ychbg3NdObGnDSADscOwo

To claim this, I am signing this object:

Keybase proof

I hereby claim:

  • I am brad126735 on github.
  • I am intelinside (https://keybase.io/intelinside) on keybase.
  • I have a public key ASCy_wcWMC2UK1lTi8GE9nuPBjwdL6btMGJ3hIqyUMBXpgo

To claim this, I am signing this object:

@bhooten
bhooten / CommandBase.java
Last active May 5, 2017 21:06
CommandBase
package me.intelinside.trispleef.command;
import org.bukkit.ChatColor;
import org.bukkit.command.Command;
import org.bukkit.command.CommandExecutor;
import org.bukkit.command.CommandSender;
public abstract class CommandBase implements CommandExecutor
{
private final String[] commands;