Quote:
|
Originally Posted by jake13jake
What did scripters who used return before it actually returned a value use it for?
|
It completely stops the function:
PHP Code:
if (playerchats)
{
money = int(strtofloat(#c));
drop();
}
function drop()
{
if (money =< 0) return;
//DROP HERE
}