Vice City Multiplayer

VC:MP 0.3 => mIRC/pawn Scripting => Topic started by: asad3man on May 25, 2011, 09:06:51 pm

Title: Help in Commands
Post by: asad3man on May 25, 2011, 09:06:51 pm
i want to add that command which is always start after 2 min with writting it like

auto commands script hmmmmmm
(http://i55.tinypic.com/14ce984.jpg)
Title: Re: Help in Commands
Post by: Mephisto on May 27, 2011, 12:42:02 am
i want to add that command which is always start after 2 min with writting it like

auto commands script hmmmmmm
(http://i55.tinypic.com/14ce984.jpg)
this to ongamemode init
Code: [Select]
SetTimer("twoMinutFunc",120000,true);

this after it or somwewhere
Code: [Select]
forward twoMinutFunc();
public twoMinutFunc()
{

SendClientMessageToAll(COLOR_WHITE, "spam here");

return 1;
}
Title: Re: Help in Commands
Post by: asad3man on May 27, 2011, 07:32:09 am
this is the error which is coming

(http://i52.tinypic.com/29kuwqo.jpg)
Title: Re: Help in Commands
Post by: Scripter on May 27, 2011, 10:11:22 am
lol add this function on

 ongamemode init

SetTimer("twoMinutFunc",120000,true);
Title: Re: Help in Commands
Post by: asad3man on May 27, 2011, 12:53:52 pm
Thanx dude