menu_button.inc
Original include source with line numbers.
| 1 | stock UTIL_MenuButton(iNumber = -1) { |
| 2 | |
| 3 | new szButton[16]; |
| 4 | if(iNumber == -1) formatex(szButton, charsmax(szButton), "\r[\y#\r]"); |
| 5 | else formatex(szButton, charsmax(szButton), "\r[\y%d\r]", iNumber); |
| 6 | |
| 7 | return szButton; |
| 8 | |
| 9 | } |