You really need to know how to debug if you want to release plugins.
Code:
L 03/29/2014 - 02:02:24: String formatted incorrectly - parameter 6 (total 6)
L 03/29/2014 - 02:02:24: [AMXX] Displaying debug trace (plugin "test1.amxx")
L 03/29/2014 - 02:02:24: [AMXX] Run time error 25: parameter error
L 03/29/2014 - 02:02:24: [AMXX] [0] test1.sma::SettingsMenu (line 332)
L 03/29/2014 - 02:02:24: [AMXX] [1] test1.sma::Cmd_Say (line 248)
Black Rose : /music
Code:
formatex( iText, charsmax( iText ), "%L \w[\r%L\w]", id, "ADV_MENU1_SETTINGS", g_SettingsSave[ id ] ? "ADV_MENU1_SETTINGS_SAVED" : "ADV_MENU1_SETTINGS_NOT_SAVED" )
-->
Code:
formatex( iText, charsmax( iText ), "%L \w[\r%L\w]", id, "ADV_MENU1_SETTINGS", id, g_SettingsSave[ id ] ? "ADV_MENU1_SETTINGS_SAVED" : "ADV_MENU1_SETTINGS_NOT_SAVED" )
__________________