Tutorials : How to Make A Menu (Easy Feb 27, 2018 4:28:03 GMT via mobile Quote Select PostDeselect PostLink to PostMemberGive GiftBack to Top Post by shubhamt on Feb 27, 2018 4:28:03 GMT zmd94 how to make auto come up of weapons menu on every round?Explain howI want like thisNew round startsFirst primary weapons comeThen secondary weaponsThen knife menu
Tutorials : How to Make A Menu (Easy Feb 27, 2018 10:10:46 GMT Quote Select PostDeselect PostLink to PostMemberGive GiftBack to Top Post by zmd94 on Feb 27, 2018 10:10:46 GMT Just show the menu at Round_Start event:public plugin_init() { // Round_Start event register_logevent("Event_RoundStart", 2, "1=Round_Start")}public Event_RoundStart(){ // Code to show menu}
Tutorials : How to Make A Menu (Easy Feb 27, 2018 12:13:27 GMT via mobile Quote Select PostDeselect PostLink to PostMemberGive GiftBack to Top Post by shubhamt on Feb 27, 2018 12:13:27 GMT But zmd94 i want like thisPrimary weapons menu - code(PrimMenu)Secondary weapons menu - code(SecMenu)Knife menu - code(KnifeMenu)In your code how to do?Give me example from which i gave 3 codes to youPrimMenuSecMenuKnifeMenu
Tutorials : How to Make A Menu (Easy Feb 27, 2018 23:30:49 GMT via mobile Quote Select PostDeselect PostLink to PostMemberGive GiftBack to Top Post by shubhamt on Feb 27, 2018 23:30:49 GMT I think /guns
Tutorials : How to Make A Menu (Easy Feb 28, 2018 11:49:17 GMT Quote Select PostDeselect PostLink to PostMemberGive GiftBack to Top Post by X3.! on Feb 28, 2018 11:49:17 GMT Feb 27, 2018 23:30:49 GMT shubhamt said:I think /gunsWhich zp version you are using,and you have knife mod plugin ?
Tutorials : How to Make A Menu (Easy Feb 28, 2018 17:18:27 GMT via mobile Quote Select PostDeselect PostLink to PostMemberGive GiftBack to Top Post by shubhamt on Feb 28, 2018 17:18:27 GMT I want to make weapons menu for zombie escape
Tutorials : How to Make A Menu (Easy Mar 1, 2018 12:36:48 GMT Quote Select PostDeselect PostLink to PostMemberGive GiftBack to Top Post by zmd94 on Mar 1, 2018 12:36:48 GMT For ZE, kindly to visit our friend forum:escapers-zone.net/
Tutorials : How to Make A Menu (Easy Mar 21, 2018 4:31:56 GMT via mobile Quote Select PostDeselect PostLink to PostMemberGive GiftBack to Top Post by Abhinash ( Bboy NeO ) on Mar 21, 2018 4:31:56 GMT zmd94, why people convert the fourth parameter of menu_get_iteminfo() like --new iChoice = str_to_num(fourth parameter)I have understood the newmenus but not his part.Can you make me undertand it ?Whats the purpose of doing this ?
Tutorials : How to Make A Menu (Easy Mar 22, 2018 4:03:17 GMT Quote Select PostDeselect PostLink to PostMemberGive GiftBack to Top Post by zmd94 on Mar 22, 2018 4:03:17 GMT Example of code, Abhinash.
Tutorials : How to Make A Menu (Easy Mar 22, 2018 17:56:21 GMT via mobile Quote Select PostDeselect PostLink to PostMemberGive GiftBack to Top Post by Abhinash ( Bboy NeO ) on Mar 22, 2018 17:56:21 GMT This is the example code --new command[6], name[64], access, callback;menu_item_getinfo(menu, item, access, command, sizeof command - 1, name, sizeof name - 1, callback);iChoice = str_tu_num(command)switch iChoice { // ........}
Tutorials : How to Make A Menu (Easy Mar 22, 2018 20:38:22 GMT via mobile Quote Select PostDeselect PostLink to PostMemberGive GiftBack to Top Post by KinG on Mar 22, 2018 20:38:22 GMT Mar 22, 2018 17:56:21 GMT Abhinash ( Bboy NeO ) said:This is the example code --new command[6], name[64], access, callback;menu_item_getinfo(menu, item, access, command, sizeof command - 1, name, sizeof name - 1, callback);iChoice = str_tu_num(command)switch iChoice { // ........}This code no need to use :/ idk too why peoepls using it ...
Tutorials : How to Make A Menu (Easy Mar 22, 2018 21:24:25 GMT via mobile Quote Select PostDeselect PostLink to PostMemberGive GiftBack to Top Post by Abhinash ( Bboy NeO ) on Mar 22, 2018 21:24:25 GMT But I want to know why people use it.
Tutorials : How to Make A Menu (Easy Mar 27, 2018 10:01:27 GMT KinG likes this Quote Select PostDeselect PostLink to PostMemberGive GiftBack to Top Post by zmd94 on Mar 27, 2018 10:01:27 GMT King is right. Yet, I'm not sure why there are coders use the method.