mirror of
https://github.com/alliedmodders/amxmodx.git
synced 2025-01-13 23:38:07 +03:00
Added a new math stock function.
This commit is contained in:
parent
3f9598fcbb
commit
cc34f468f0
@ -191,3 +191,16 @@ stock AddMenuItem_call(const MENU_TEXT[], const MENU_CMD[], const MENU_ACCESS, c
|
|||||||
|
|
||||||
callfunc_end()
|
callfunc_end()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
stock gaben(low, high, seed, offset)
|
||||||
|
{
|
||||||
|
new numElements = high - low + 1;
|
||||||
|
offset += seed - low;
|
||||||
|
|
||||||
|
if (offset >= 0)
|
||||||
|
return low + (offset % numElements);
|
||||||
|
else
|
||||||
|
return high - (abs(offset) % numElements) + 1;
|
||||||
|
return 0; // Makes the compiler happy -_-
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user