help -
d0nTtoucH - 06.03.2014
help please
C:\Users\\Desktop\Всякакви работи\truck\pawno\include\Dialogs.inc(124) : warning 213: tag mismatch
C:\Users\\Desktop\Всякакви работи\truck\pawno\include\Dialogs.inc(124) : warning 202: number of arguments does not match definition
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
2 Warnings.
the lines
case 8: SetSpawnInfo(playerid, 0, GetPlayerSkin(playerid), 133,873.5385, 419.7788, 18.0051, 198.1900, 0, 0, 0, 0, 0, 0);
i need fast answer please
Re: help -
XK - 06.03.2014
pawn Код:
case 8:
{
SetSpawnInfo(playerid, 0, GetPlayerSkin(playerid), 133,873.5385, 419.7788, 18.0051, 198.1900, 0, 0, 0, 0, 0, 0);
}
try this
Re: help -
d0nTtoucH - 07.03.2014
Quote:
Originally Posted by XK
pawn Код:
case 8: { SetSpawnInfo(playerid, 0, GetPlayerSkin(playerid), 133,873.5385, 419.7788, 18.0051, 198.1900, 0, 0, 0, 0, 0, 0); }
try this
|
not working this is how the original code looks like
Код HTML:
case 6: SetSpawnInfo(playerid, 0, GetPlayerSkin(playerid), 332.0, 900.0, 25.0, 205.0, 0, 0, 0, 0, 0, 0);
case 7: SetSpawnInfo(playerid, 0, GetPlayerSkin(playerid), -1575.0, -2724.0, 49.0, 146.0, 0, 0, 0, 0, 0, 0);
case 8: SetSpawnInfo(playerid, 0, GetPlayerSkin(playerid), 133,873.5385, 419.7788, 18.0051, 198.1900, 0, 0, 0, 0, 0, 0);
Re: help -
Konstantinos - 07.03.2014
pawn Код:
case 8: SetSpawnInfo(playerid, 0, GetPlayerSkin(playerid), 873.5385, 419.7788, 18.0051, 198.1900, 0, 0, 0, 0, 0, 0);
The 133 you had was supposed to be? If it meant to be the skinid, then you have to remove GetPlayerSkin(playerid).
Re: help -
d0nTtoucH - 07.03.2014
fixed
Re: help -
Konstantinos - 07.03.2014
Post the above line of it. It's like it doesn't end with a closed bracket.