Just a heads up. I closed a bunch of issues, and finished the new command parsing. It works really well. Many other bugs have been fixed. But I am really proud of the command parser. You no longer need to put names of players and items in quotes, but you can if you want to. Type all in lower case, or caps lock ON. Makes no difference, it is case-insensitive. You can even mis-spell item names and player names, and if you got most of it right, it will still locate the correct player or item. If you can't remember whether a blueprint is "BP" or "Blueprint" just type either one, the parser knows what goes with what. As you can see in the examples below, you need to spell a player's name about 60% right to make sure it matches. Or put it in quotes. You can also just eliminate spaces from a player's name instead of quoting. Works just as well.
Code:
/give blueprntz 556 ammo 556 )))00)
quantity = 556
testStr = ammo )))00), bestName = Рачок))))00)
itemName = 556 Ammo Blueprint
/give hanky christmas poo 556 ammo bp
quantity = 1
testStr = hanky christmas poo, bestName = Hanky The Christmas Poo
itemName = 556 Ammo Blueprint
/give hanky christmas poo 556 ammo bp 556
quantity = 556
testStr = hanky christmas poo, bestName = Hanky The Christmas Poo
itemName = 556 Ammo Blueprint
/give empty shutgun casing raven moon
quantity = 1
testStr = casing raven moon, bestName = Aria Ravenmoon
itemName = Empty 556 Casing
/give empty shutgun shell raven moon
quantity = 1
testStr = shell raven moon, bestName = Aria Ravenmoon
itemName = Empty Shotgun Shell
/give mt shutgun shell raven moon
quantity = 1
testStr = shell raven moon, bestName = Aria Ravenmoon
itemName = Empty Shotgun Shell
/give mt shutgun shell ria raven moon
quantity = 1
testStr = ria raven moon, bestName = Aria Ravenmoon
itemName = Empty Shotgun Shell
/give 556 ammo bp 556 ria raven moon
quantity = 556
testStr = ria raven moon, bestName = Aria Ravenmoon
itemName = 556 Ammo Blueprint
/give hankypoo "556 ammo bp" 556
quantity = 556
testStr = hankypoo, bestName = hunkill
itemName = 556 Ammo Blueprint
/give hanky poo "556 ammo bp" 556
quantity = 556
testStr = hanky, bestName = hunkill
itemName = 556 Ammo Blueprint
/give "hanky poo" "556 ammo bp" 556
quantity = 556
testStr = hanky poo, bestName = Hanky The Christmas Poo
itemName = 556 Ammo Blueprint
/give 9000 kills "556 ammo bp" 556
quantity = 556
testStr = kills, bestName = SkillDic
itemName = 556 Ammo Blueprint
/give "9000 kills" "556 ammo bp" 556
quantity = 556
testStr = 9000 kills, bestName = Over9000 Hippie kills
itemName = 556 Ammo Blueprint
/give "9000 kills" "556 ammo" 556 blueprnt
quantity = 556
testStr = 9000 kills, bestName = Over9000 Hippie kills
itemName = 556 Ammo Blueprint
/give blueprntz 556 ammo 556 kazuma
quantity = 556
testStr = ammo kazuma, bestName = DeathGodKazuma
itemName = 556 Ammo Blueprint
/give blueprntz 556 ammo 556 endan spu
quantity = 556
testStr = endan, bestName = Sandman
itemName = 556 Ammo Blueprint
/give blueprntz 556 ammo 556 "endan spu"
quantity = 556
testStr = endan spu, bestName = Endangered SpyCrab
itemName = 556 Ammo Blueprint
/give blueprntz 556 ammo 556 fag o tron
quantity = 556
testStr = tron, bestName = TRONO
itemName = 556 Ammo Blueprint
/give blueprntz 556 ammo 556 "fag o tron"
quantity = 556
testStr = fag o tron, bestName = Faggottron3000
itemName = 556 Ammo Blueprint