SA-MP Forums Archive
Can someone explain this to me? - 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: Can someone explain this to me? (/showthread.php?tid=609755)



Can someone explain this to me? - andrejc999 - 16.06.2016

So guys I've been programming in pawn for a year or two and I still don't understand what's the difference between

Code:
stock Something()
{
   return 1;
}
and

Code:
Something()
{
    return 1;
}



Re: Can someone explain this to me? - Sjn - 16.06.2016

https://sampforum.blast.hk/showthread.php?tid=570635


Re: Can someone explain this to me? - andrejc999 - 16.06.2016

Thanks..