How to check that a number devisable by 5 or not - 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: How to check that a number devisable by 5 or not (
/showthread.php?tid=661929)
How to check that a number devisable by 5 or not -
GameOvr - 19.12.2018
Title Explains it all
Thanks
Re: How to check that a number devisable by 5 or not -
Kaliber - 19.12.2018
PHP код:
if(x%5 == 0)
{
//Divisible by 5
}