Advertisement
DraKiNs

[COD] Retornar Valor sem Complicação

Jul 30th, 2011
357
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 0.33 KB | None | 0 0
  1. /*
  2.     Está função converte uma string para float ou value com o auto-reconhecimento do tipo de valor da mesma
  3.     Criado por Bruno da Silva
  4.     wwww.ips-team.blogspot.com
  5. */
  6.  
  7.  
  8. #define returnValue(%0) \
  9.     (strfind(%0, "\x2e", true) != -1) ? floatstr(%0) : strval(%0)
  10.  
  11.  
  12. //Exemplo:
  13. SetPlayerHealth(playerid, returnValue("1.0"));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement