SA-MP Forums Archive
IRC SCRIPT. UNEXPECTED ERRORS - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: IRC SCRIPT. UNEXPECTED ERRORS (/showthread.php?tid=586967)



IRC SCRIPT. UNEXPECTED ERRORS - sscarface - 26.08.2015

PHP код:
C:\Users\\Downloads\Compressed\New folder (3)\samp037_svr_R1_win32 (2) - Copy\gamemodes\grab.pwn(2865) : error 001expected token"-string end-"but found "-identifier-"
C:\Users\\Downloads\Compressed\New folder (3)\samp037_svr_R1_win32 (2) - Copy\gamemodes\grab.pwn(2865) : error 029invalid expressionassumed zero
C
:\Users\\Downloads\Compressed\New folder (3)\samp037_svr_R1_win32 (2) - Copy\gamemodes\grab.pwn(2868) : error 010invalid function or declaration
Pawn compiler 3.2.3664              Copyright 
(c1997-2006ITB CompuPhase
3 Errors

PHP код:
public IRC_OnUserDisconnect(botiduser[], host[], message[])
{
    
printf("*** IRC_OnUserDisconnect (Bot ID %d): User %s (%s) disconnected (%s)"botiduserhostmessage);
    return 
1;

I don't see anything wrong. Any help? guyz


Re: IRC SCRIPT. UNEXPECTED ERRORS - sscarface - 26.08.2015

anyone


Re: IRC SCRIPT. UNEXPECTED ERRORS - LazyB0y - 27.08.2015

Try this one
pawn Код:
public IRC_OnUserDisconnect(botid, user[], host[], message[])
{
      printf("*** IRC_OnUserDisconnect (Bot ID %d): User %s (%s) disconnected (%s)", botid, user, host, message);
      return 1;
}



Re: IRC SCRIPT. UNEXPECTED ERRORS - PowerF - 27.08.2015

umm,sorry for bumping this topic

but,whats the different from code sscarface give and LazyBoy's?