• Welcome to Vice City Multiplayer.
 

cd in ann helpme xD [in pawno]

Started by A7Xsniper, April 23, 2011, 12:13:24 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

A7Xsniper

English: how to make the cd command in ann?

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


xD

tato






<!-- Facebook Badge START --><a href="http://es-es.facebook.com/eduardoeslindo" target="_TOP" style="font-family: &quot;lucida grande&quot;,tahoma,verdana,arial,sans-serif; font-size: 11px; font-variant: normal; font-style: normal; font-weight: normal; color: #3B5998; text-decoration: none;" title="Eduardo Estrada">Eduardo Estrada</a><br/><a href="http://es-es.facebook.com/eduardoeslindo" target="_TOP" title="Eduardo Estrada"><img src="http://badge.facebook.com/badge/697470158.6069.1979465113.png" width="120" height="272" style="b

BaSSMaN

Meh, this is easy to do, GUPS cd.

Replace SendClientMessageToAll with GameTextForAll .. Eh?

A7Xsniper

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;

BIG[H]

#4
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 public FinalCountAnn()
{
GameTextForAll("~o~==GO!==");

}


At cmd modify it
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;
}
My Guru FORUM MUST VISITmegavcmp.freeforums.org

BIG[H] = BIG HaLL

A7Xsniper