compile problem
#9

Quote:
Originally Posted by Dwane
Посмотреть сообщение
The SearchingHit is fine.
Can you post the whole part of ExtortionBiz Callback
Код:
public ExtortionBiz(bizid, money)
{
    new string[128];
    format(string, sizeof(string), "No-one");
    if(strcmp(BizzInfo[bizid][bExtortion],string, true ) == 0 )
	{
	    return 0;
	}
	for(new i = 0; i < MAX_PLAYERS; i++)
	{
	    if(IsPlayerConnected(i))
	    {
	        new name[MAX_PLAYER_NAME];
			new wstring[MAX_PLAYER_NAME];
			GetPlayerName(i, name, sizeof(name));
			format(string, sizeof(string), "%s", name);
			strmid(wstring, string, 0, strlen(string), 255);
			if(strcmp(BizzInfo[bizid][bExtortion] ,wstring, true ) == 0 )
			{
			    new value = money / 100;
			    value = value * 10;
			    SafeGivePlayerMoney(i, value);
			    BizzInfo[bizid][bTill] -= value;
			}
		}
	}
	return 1;
}
Reply


Messages In This Thread
compile problem - by viddo - 16.02.2012, 11:18
Re: compile problem - by [HK]Ryder[AN] - 16.02.2012, 11:24
Re: compile problem - by viddo - 16.02.2012, 11:32
Re: compile problem - by Chris White - 16.02.2012, 11:37
Re: compile problem - by Konstantinos - 16.02.2012, 11:40
Re: compile problem - by Mark™ - 16.02.2012, 11:45
Re: compile problem - by viddo - 16.02.2012, 12:16
Re: compile problem - by Konstantinos - 16.02.2012, 12:18
Re: compile problem - by viddo - 16.02.2012, 12:23
Re: compile problem - by Konstantinos - 16.02.2012, 12:26

Forum Jump:


Users browsing this thread: 3 Guest(s)