• Welcome to Vice City Multiplayer.
 
Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - asad3man

#1
Support / Property in GUPS 1.16
April 28, 2011, 02:04:15 PM
neNeed to add more Property in GUPS 1.16 how to add tell me..? ???
#2
Support / Re: Problems To Play VC:MP
April 27, 2011, 04:42:29 PM
Reinstall VC-MP Client this is Happened to me and i reinstalled it
#3
Support / Re: Need to add m ore CHaracter and SKin
April 26, 2011, 04:15:55 PM
i have GUPS 1.16 i am having problem in Characters folder of GUPS have Characters id how to put in these id
#4
Support / Need to add m ore CHaracter and SKin
April 26, 2011, 02:14:07 PM
I need to add more characters and Skin in VC-MP i have GUPS 1.16 how to do hat give me special tutorial dont laugh at m e i am new bie
#5
ShowRoom (pawn) / Re: GUPS 1.16a
April 25, 2011, 08:40:42 PM
How to ApPly these
#6
i want to add more players in GUPS 1.16 So what i have to do how to find Spawn Characters and how to add them?
#7
ShowRoom (pawn) / Re: GUPS 1.16a
April 25, 2011, 06:46:45 PM
how to login as admin in this script tell me
#8
Support / Re: How to kick
April 25, 2011, 02:40:36 PM
when i kick  like this /kick 1 lolz then it just kick dont give reason and give me fulll COmmands of VC-MP server
#9
Support / Re: How to kick
April 25, 2011, 01:55:01 PM
i want to kick with reason what   i have to add
#10
Support / Re: How to kick
April 25, 2011, 01:19:04 PM
hey i need to kick  players with reason is it without Reasonable....
#12
Support / Re: How to kick
April 25, 2011, 11:37:10 AM
Quote from: yazeen on April 24, 2011, 02:38:45 PM
/c kick [Nick/Id] [Reason](Credits to me)

   }
else if (strcmp(cmd, "kick", true) == 0) {
new reason[256], plr, szMsg[256];
tmp = strtok(cmdtext, idx), reason = strtok(cmdtext, idx), plr = FindPlayerIDFromString(tmp);
if(IsPlayerAdmin(playerid))
else if (!strlen(reason)) SendClientMessage(playerid,0xFFFF00AA,"USAGE: /c kick [Nick/ID] [Reason]");
  else if (plr == INACTIVE_PLAYER_ID) SendClientMessage(playerid,0xFFFF00AA,"Error: Unknown player");
else {
format(szMsg,sizeof(szMsg),"Admin: %s kicked player:[ %s ] Reason:[ %s ]",gPlayers[playerid],gPlayers[plr],cmdtext[strlen(tmp)+6]);
SendClientMessageToAll(0xFFFF00AA,szMsg);
Kick(plr);
}


If u Dont Have FindPlayerIdFromString Function Add it  (Credits to bakasan

public FindPlayerIDFromString(string[])
{// for determining player id from a string  -bakasan
new player = INACTIVE_PLAYER_ID;
new p = 0;
while (p < MAX_PLAYERS) { if (strfind(gPlayers[p],string,true) != -1) { player=p;break; } p++; }
if (player == INACTIVE_PLAYER_ID) {// string didnt match so check if it can be an id
if ((strlen(string) > 2) || (isnumeric(string) == 0)) { return INACTIVE_PLAYER_ID; }
player = strval(string);// string is numeric and not more than 2 digits
}
if (!IsPlayerConnected(player)) { return INACTIVE_PLAYER_ID; }
return player;// valid id found
}
return 1;
}


Unban/Ban Command(Credits to madara)
UnBan/Ban By madara


How to use these 1st one
When i am using 2nd one then reason isnot coming Why tell me i want to use 1st one When i put it it gives a huge list of error
#13
Support / Re: How to kick
April 25, 2011, 11:30:43 AM
tahnx Stormous thanx
#14
Support / Re: How to kick
April 24, 2011, 04:03:32 PM
#15
Support / Re: How to kick
April 24, 2011, 03:46:27 PM
when i put it and compile it it says Error