When i type !score it should be no different then if I type:
!SCORE
!Score
!ScOrE
!sCoRe
!SCOre
!scoRE
!sCore
!scOre
!scoRe
!scorE
Obviously this should apply to all the different functions.
Heres some sample psuedo code:
or
!SCORE
!Score
!ScOrE
!sCoRe
!SCOre
!scoRE
!sCore
!scOre
!scoRe
!scorE
Obviously this should apply to all the different functions.
Heres some sample psuedo code:
Code:
if(strtoupper(command) == "!SCORE") { //Execute code silly }
Code:
if(strtolower(command) == "!score") { //Execute code silly }
Comment