28.11.2010, 22:17
Quote:
So, I got to the part where you can actually sell the weapon. I made it do something like
Код:
if(weaponName == "bat") Is there any way I can check if they typed the right weapon in weaponName without using strcmp? |
pawn Код:
if(!strcmp(weaponName, "Bat", true))
{
//Do your stuff!
}