BIG PROB.
#2

A suggestion: Use switch to your code stay more clean a little more fast.

Example:

Actual:

pawn Код:
if(playerDB[playerid][specialybe] == 0) darbas = "Bedarbis";
else if(playerDB[playerid][specialybe] == 1) darbas = "Pareigunas";
With Switch:
pawn Код:
switch(playerDB[playerid][specialybe])
{
    case 0: darbas = "Bedarbis";
    case 1: darbas = "Pareigunas";  
}
Reply


Messages In This Thread
BIG PROB. - by AndriusZ* - 30.08.2010, 19:17
Re: BIG PROB. - by CyNiC - 30.08.2010, 19:33
Re: BIG PROB. - by AndriusZ* - 30.08.2010, 19:35
Re: BIG PROB. - by AndriusZ* - 30.08.2010, 19:39
Re: BIG PROB. - by CAR - 30.08.2010, 19:44
Re: BIG PROB. - by AndriusZ* - 30.08.2010, 19:47
Re: BIG PROB. - by AndriusZ* - 30.08.2010, 20:35
Re: BIG PROB. - by AndriusZ* - 30.08.2010, 21:42
Re: BIG PROB. - by AndriusZ* - 30.08.2010, 23:13

Forum Jump:


Users browsing this thread: 1 Guest(s)