Advertisement
Guest User

HASLDECO

a guest
Jul 24th, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //script creado por ◊SILVERSURFER◊
  2.  
  3. var hashl = true;
  4. function onLoad()
  5. {
  6. print("hashlink decode has been loaded by "+userobj.name+"");
  7. }
  8.  
  9.  
  10. function onCommand(u,cmd,t,ex)
  11. {
  12. if(cmd.substr(0,7)=="deco si"{
  13. hashl==true;
  14. print("\x0304 Decodificador Habilitado");
  15. }
  16.  
  17. if(cmd.substr(0,7)=="deco no"{
  18. hashl==false;
  19. print("\x0304 Decodificador Deshabilitado");
  20. }
  21.  
  22. }
  23. function onTextReceived(u,text)
  24. {  
  25.    
  26.     if(hashl){    
  27.  
  28.   var hashlink = ""+text+"";
  29.     var canx = Hashlink.decode(hashlink);
  30.     print("\x0303\x07Nombre de la sala:\x07\x0301 "+canx.name);
  31.     print("\x0303\x07Direccion de IP de la sala:\x07\x0301 "+canx.ip);
  32.     print("\x0303\x07Puerto de la Sala:\x07\x0301 "+canx.port);
  33.        
  34.  
  35.  
  36.    
  37. }
  38. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement