Advertisement
Guest User

Untitled

a guest
Jul 31st, 2015
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. C:\Dokumente und Einstellungen\user\Desktop\Script\gamemodes\grandlarc.pwn(301) : warning 213: tag mismatch
  2. C:\Dokumente und Einstellungen\user\Desktop\Script\gamemodes\grandlarc.pwn(301) : error 010: invalid function or declaration
  3. C:\Dokumente und Einstellungen\user\Desktop\Script\gamemodes\grandlarc.pwn(302) : error 025: function heading differs from prototype
  4.  
  5. forward Float:frandom(Float:max,Float:min = 0,1,dp = 4);
  6. Float:frandom(Float:max,Float:min = 0.1, dp = 4)
  7. {
  8. new Float:mul = floatpower(10.0, dp),
  9. imin = floatround(min * mul),
  10. imax = floatround(max * mul);
  11. return float(random(imax - imin) + imin) / mul;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement