• 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 - Jancis71

#16
VC:MP Clans / Re: VC:MP clans
September 01, 2010, 07:27:33 AM
Quote from: OLvidO on September 01, 2010, 12:36:52 AM
Quote from: desfire97 on August 31, 2010, 06:06:53 PM
Underground Rats
* Country: Internacional
* Leaders: desfire97
* Clan Tag: [UR] [UR_M] [UR_R]
* Homepage: www.undergroundrats.gamerdna.com
* Clan Server: coming soon  ;)
* IRC Channel: none

lol

P.S   Ranking system is the funniest.
#17
he mean somehing else   
QuoteId 0 wrote in his "seemylatters" and sees the message in his left another player.
#18
i wanted this script for my server true, if i will make one script i will give you
#19
Support / Re: Need Help
August 27, 2010, 11:47:10 AM
announce is on?
#20
mIRC/pawn Scripting / Re: Not work
August 25, 2010, 08:34:59 PM
else if (strcmp(cmd, "!givecash", true) == 0) {
          new tmp2[256], plr;
         
      tmp = strtok(cmdtext, idx), tmp2 = strtok(cmdtext, idx), plr = FindPlayerIDFromString(tmp);
      if(PlayerInfo[playerid][Logged] != 1) SendClientMessage(playerid, COLOR_TEXT, "You need to login first!");
      else if (!strlen(tmp2)) SendClientMessage(playerid,COLOR_TEXT, "USAGE: !givecash [Nick/ID] [Amount]");
      else if (GetPlayerHandCash(gPlayers[playerid]) < StrToInt(tmp2)) SendClientMessage(playerid,COLOR_TEXT, "Error: You havent got the needed money.");
      else if (plr == INACTIVE_PLAYER_ID) SendClientMessage(playerid,COLOR_TEXT,"Error: Unknown player");
      else if(!IsPlayerRegistered(gPlayers[plr])) SendClientMessage(playerid, COLOR_TEXT, "Error: That nick is not registered!");
      else if (!IsNumeric(tmp2)) SendClientMessage(playerid,COLOR_TEXT, "Error: Invalid Amount!");
      else {
         format(szMsg,sizeof(szMsg),"You have sent:[ $%d ] to:[ %s ]", StrToInt(tmp2),gPlayers[plr]);
         SendClientMessage(playerid,COLOR_TEXT, szMsg);
         DecPlayerHandCash(playerid,StrToInt(tmp2));
         IncPlayerHandCash(plr,StrToInt(tmp2));
      }
      return 1;
      }


change COLOR_TEXT to COLOR_GREEN for example.
#22
mIRC/pawn Scripting / Re: Not work
August 12, 2010, 10:38:56 AM
all problems are here:
   else if (plr != INACTIVE_PLAYER_ID) SendClientMessage(playerid,COLOR_RED,"Error: Unknown player");

!= change to ==

it should look like this:
else if (plr != INACTIVE_PLAYER_ID) SendClientMessage(playerid,COLOR_RED,"Error: Unknown player");


and more one thing

find this line:      format(szMsg,sizeof(szMsg),"You have sent:[ $%d ] to:[ %s ]",tmp,gPlayers[playerid]);
and change this to  format(szMsg,sizeof(szMsg),"You have sent:[ $%d ] to:[ %s ]",StrToInt(tmp2),gPlayers[playerid]);
#23
Quote from: Klaus_Meine on August 06, 2010, 01:25:16 AM
Quote from: Tonys on August 05, 2010, 03:47:57 PM
That server is more Cops N' Robbers than anything else.  Never found it enjoyable.
If you don't like those roles, heres some advice. Don't spawn cop and don't become a robber.
Might be more enjoyable for you then ;D

You don't know what is Cops n' robebrs, eh..  that is light rp!
#24
mIRC/pawn Scripting / Need help with speedometer.
August 05, 2010, 02:05:38 PM
code:

@ OnGameModeInit: SetTimer("Speed",250,1);

public Speed()
{
for(new i = 0; i <= USERCOUNT; i++)
    {
        if(IsPlayerConnected(i))
{
new Float:x, Float:y, Float:z, distance,result,resultx[256];
    x=PlayerInfo[i][PosX];
y=PlayerInfo[i][PosY];
z=PlayerInfo[i][PosZ];
distance=GetDistance(i, x, y, z);
result=distance*6;
format(resultx,256,"%dkm/h",result);
GameTextForPlayerBottom(i,resultx);

new Float:x2,Float:y2,Float:z2;
GetPlayerPos(i,x2,y2,z2);
PlayerInfo[i][PosX]=x2;
PlayerInfo[i][PosY]=y2;
PlayerInfo[i][PosZ]=z2;

}

}
}


but function is not working well, it needs improvements.
sorry for my english.
#25
mIRC/pawn Scripting / Re: [PAWN]Bug list 0.3z
August 03, 2010, 04:33:19 PM
Quote from: [Saint] on August 02, 2010, 11:08:19 PM
please fix Callback OnPlayerText

Returning 0 in this callback will stop the text from being sent, not work  :(

in 0.4 version, this is done.. i think.
#26
mIRC/pawn Scripting / Re: GetPlayerSpeed
July 29, 2010, 10:43:14 AM
There would be SetTimerEx very useful, thanks for answer.
#27
mIRC/pawn Scripting / GetPlayerSpeed
July 28, 2010, 07:54:09 PM
I need help with GetPlayerSpeed function, i have no idea how can i do this.
#28
mIRC/pawn Scripting / Re: Problems
July 27, 2010, 11:06:25 AM
You havent real pawno client!
#29
for me everything worked  ???
#30
SetPlayerSkin Bug    what bug??