Tematy otagowane jako: skompilować
1. [INNE] Nie mogę skompilować mapki
Witam! Kupi?em niedawno map?, dosta?em wersje dzia?aj?ce, lecz troch? gorsz? oraz nie chc?c? sie skompilowa? ale lepsz?. Zdoby?em wszystkie includy do tej lepszej wersji jednak dalej wyskakuj? inne errory.
Kod: http://pastebin.com/Ru73MK0H
2. [GF] Nie moge skompilować mapy
Witam mam taki b??d
Kod:
fatal error 111: user error: Version 0.3d or higher of SA:MP Server requiered
Linijka z b??dem :
Kod:
#if !defined SetPlayerMapIcon
#error Version 0.3d or higher of SA:MP Server requiered
#endif
3. [INNE] Dodałem sscanf i nie moge skompilować z pwn do amx
Siema, tak jak w temacie, gdy doda?em sscanf na sam d?? mapki to przestaje mi dzia?a? PAWNO i wyskakuje mi b??d [b]Zamknij teraz[/b]
Oto ten sscanf:
[code]stock sscanf(string[], format[], {Float,_}:...)
{
#if defined isnull
if (isnull(string))
#else
if (string[0] == 0 || (string[0] == 1 && string[1] == 0))
#endif
{
return format[0];
}
#pragma tabsize 4
new
formatPos = 0,
stringPos = 0,
paramPos = 2,
paramCount = numargs(),
delim = ' ';
while (string[stringPos] && string[stringPos] <= ' ')
{
stringPos++;
}
while (paramPos < paramCount && string[stringPos])
{
switch (format[formatPos++])
{
case ' ':
{
return 0;
}
case 'i', 'd':
{
new
neg = 1,
num = 0,
ch = string[stringPos];
if (ch == '-')
{
neg = -1;
ch = string[++stringPos];
}
do
{
stringPos++;
if ('0' <= ch <= '9')
{
num = (num * 10) + (ch - '0');
}
else
{
r...