I want to know how I add blank options on the old menu system.
The reason why i'm using the old menu system is, cause i'm editing a plugin
(
http://forums.alliedmods.net/showthread.php?p=378952 )
And I don't really want to damage anything of the plugin so, i'm asking help of you guys.
PHP Code:
public display_knife(id) {
new menuBody[512]
add(menuBody, 511, "\rKnife Mod\w^n")
add(menuBody, 511, "\r1. \wMachete \y[\rMore Damage/Low Speed\y]\w^n")
add(menuBody, 511, "\r2. \wBak Knife \y[\rNo Footsteps\y]\w^n")
add(menuBody, 511, "\r3. \wPocket Knife \y[\rHigh Speed\y]\w^n")
add(menuBody, 511, "\r4. \wButcher Knife \y[\rLow Gravity]\w^n")
add(menuBody, 511, "\r5. \wDefault Knife \y[\rHealth Regeneration\y]\w^n^n")
add(menuBody, 511, "\r0. \wExit^n")
new keys = ( 1<<0 | 1<<1 | 1<<2 | 1<<3 | 1<<4 | 1<<9 )
show_menu(id, keys, menuBody, -1, "Knife Mod")
}
That's the code, so I want to make a blank option right after "Knife Mod" and Option "5" !
Allthough thx for helping have a nice day !