Vice City Multiplayer

VC:MP 0.3 => mIRC/pawn Scripting => Topic started by: A7Xsniper on April 23, 2011, 02:13:24 am

Title: cd in ann helpme xD [in pawno]
Post by: A7Xsniper on April 23, 2011, 02:13:24 am
English: how to make the cd command in ann?

EspaƱol: como hacer ke el comando cd aparesca en el ann?


xD
Title: Re: cd in ann helpme xD [in pawno]
Post by: tato on April 23, 2011, 08:56:22 am
i will do it X_X
Title: Re: cd in ann helpme xD [in pawno]
Post by: BaSSMaN on April 23, 2011, 11:24:36 am
Meh, this is easy to do, GUPS cd.

Replace SendClientMessageToAll with GameTextForAll .. Eh?
Title: Re: cd in ann helpme xD [in pawno]
Post by: A7Xsniper on April 23, 2011, 05:45:13 pm
este es el comando !cd que quiero hacer en ann

this is the !cd command I want to do ann


}
   else if (strcmp(cmd, "!cd", true) == 0) {
  SetTimer("CountDowns", 1000, 0);
  SetTimer("CountDowns", 2000, 0);
  SetTimer("CountDowns", 3000, 0);
  SetTimer("FinalCount", 4000, 0);
  return 1;
Title: Re: cd in ann helpme xD [in pawno]
Post by: BIG[H] on April 23, 2011, 10:16:55 pm
Add this at Public's For GUPS

Quote
public CountDownsAnn()
{
   new string[256];
   format(string,256,"~y~== %s ==",IntToStr(ServerInfo[0][Countx]));
   GameTextForAll(string);
   ServerInfo[0][Countx]--;
   if(ServerInfo[0][Countx] <= 0) {
      ServerInfo[0][Countx] = 3;
   }
}

and
Code: [Select]
public FinalCountAnn()
{
GameTextForAll("~o~==GO!==");

}

At cmd modify it
Code: [Select]
else if (strcmp(cmd, "!cd", true) == 0) {
SetTimer("CountDownsAnn", 1000, 0);
SetTimer("CountDownsAnn", 2000, 0);
SetTimer("CountDownsAnn", 3000, 0);
SetTimer("FinalCountann", 4000, 0);
return 1;
}
Title: Re: cd in ann helpme xD [in pawno]
Post by: A7Xsniper on April 24, 2011, 07:59:39 am
thank you very much! BIG [H]