TimedMsg - Nothing happens
#1

I added the following code by myself to be able to write timed messages without needing many public timers....

Its coded this way (TimerMsg gets called first):
Код:
public TimerMsg(playerid,string[],color,time,param)
{
	SetTimerEx("TimedMessage",time,0,"isii",playerid,string,color,param);
	return 1;
}

public TimedMessage(playerid,string[],color,param) //einfacher als diese dummen Timer, die sich ggseitig aufrufen...
{
	SendClientMessage(playerid,color,string);
	switch(param) //um auch custom aktionen auszufьhren
	{
//   case 0: if param isnt needed
	  case 1: //action
	  case 2: //action
		case 3: //action
		case 4: //action
	}
	return 1;
}
Now the messages doesnt gets shown, either the actions are done....

Can you pls tell me the wrong part of the script ?

Cheers,
Trooper
Reply


Messages In This Thread
TimedMsg - Nothing happens - by Trooper[Y] - 17.11.2009, 15:59
Re: TimedMsg - Nothing happens - by Zeex - 17.11.2009, 16:26
Re: TimedMsg - Nothing happens - by Trooper[Y] - 17.11.2009, 16:34
Re: TimedMsg - Nothing happens - by yom - 17.11.2009, 16:59
Re: TimedMsg - Nothing happens - by Trooper[Y] - 18.11.2009, 18:12
Re: TimedMsg - Nothing happens - by yom - 18.11.2009, 18:24
Re: TimedMsg - Nothing happens - by Trooper[Y] - 18.11.2009, 18:33

Forum Jump:


Users browsing this thread: 1 Guest(s)