I Think At
Code:
formatex(szSound, charsmax(szSound), "weapons/%s.wav", g_szKnivesSounds[g_rgKnives[iKnifeId][KNIFE_SOUND]][iSoundId])
This:
Code:
g_szKnivesSounds[g_rgKnives[iKnifeId][KNIFE_SOUND]][iSoundId]
Should Be:
Code:
g_szKnivesSounds[iKnifeId][iSoundId]
(If not then please paste full source code :_ )
__________________