.float checkfail;
.float lms_spectate_warning;
+float VoteCommand(entity caller, float argc);
string MapVote_Suggest(string m);
//void MapVote_SendPicture(float id)
// Main function handling vote commands
// ======================================
+void VoteCommand(float request, entity caller, float argc)
+{
+ switch(request)
+ {
+ case VC_REQUEST_COMMAND:
+ {
+
+ return;
+ }
+
+ default:
+ case VC_REQUEST_USAGE:
+ {
+ print("\nUsage:^3 vote \n");
+ print(" No arguments required.\n");
+ return;
+ }
+ }
+}
+
float VoteCommand(entity caller, float argc)
{
if(VoteCommand_macro_command(argc))