Vice City Multiplayer

VC:MP 0.3 => mIRC/pawn Scripting => Topic started by: saberman on February 10, 2011, 04:44:19 pm

Title: GUPS question
Post by: saberman on February 10, 2011, 04:44:19 pm
I want to ask how do I add a a /c command and how do I add like (strcmp(cmd, "back", true) == 0) {
SendClientMessageToAll(COLOR_GREEN, playerid & "is back")???? Waiting for a response.
Title: Re: GUPS question
Post by: Aldo on February 10, 2011, 05:04:07 pm
Code: [Select]
else if (strcmp(cmd, "back", true) == 0) {
    new name[20], string[128];
    GetPlayerName(playerid, name, 20);
    format(string, sizeof(string), "%s, Is Back!", name);
    SendClientMessageToAll(COLOR_GREEN, string);
    return 1;
}
Title: Re: GUPS question
Post by: saberman on February 11, 2011, 01:17:09 pm
Thanks aldo now how do I add a /c command?????
Title: Re: GUPS question
Post by: Aldo on February 11, 2011, 03:51:20 pm
that is /c  ;D
Title: Re: GUPS question
Post by: shivambansal on February 11, 2011, 05:39:08 pm
 :D :D
Title: Re: GUPS question
Post by: BIG[H] on February 11, 2011, 10:47:50 pm
Quote
   else if (strcmp(cmd, "back", true) == 0) {
       new name[20], string[128];
       GetPlayerName(playerid, name, 20);
          format(string, sizeof(string), "%s, Is Back!", name);
          SendClientMessageToAll(COLOR_GREEN, string);
          return 1;
    }

He is using GUPS so he didn't need
Quote
GetPlayerName(playerid, name, 20);

he can use gPlayers[playerid] :P


Quote
else if (strcmp(cmd, "back", true) == 0) {
       new string[128];
          format(string, sizeof(string), "%s, Is Back!", gPlayers[playerid]);
          SendClientMessageToAll(COLOR_GREEN, string);
          return 1;
Title: Re: GUPS question
Post by: Aldo on February 11, 2011, 10:58:23 pm
Quote
   else if (strcmp(cmd, "back", true) == 0) {
       new name[20], string[128];
       GetPlayerName(playerid, name, 20);
          format(string, sizeof(string), "%s, Is Back!", name);
          SendClientMessageToAll(COLOR_GREEN, string);
          return 1;
    }

He is using GUPS so he didn't need
Quote
GetPlayerName(playerid, name, 20);

he can use gPlayers[playerid] :P


Quote
else if (strcmp(cmd, "back", true) == 0) {
       new string[128];
          format(string, sizeof(string), "%s, Is Back!", gPlayers[playerid]);
          SendClientMessageToAll(COLOR_GREEN, string);
          return 1;

anf if you knew Pawn, you would know GUPS draws on to much memory aka "256" for everything
Title: Re: GUPS question
Post by: shivambansal on February 12, 2011, 09:04:15 am
yea ;)
Title: Re: GUPS question
Post by: saberman on February 12, 2011, 09:08:12 am
The topic is solved, the problem was with the hoster of the server.