Advertisement
DestBro

AIM

Jul 16th, 2017
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. import flashex.mem;
  2. import flashex.io;
  3. import std.random;
  4. import flash.vm;
  5. import flash.vmex;
  6. import flash.swf;
  7. import flash.minimap;
  8. import Network;
  9. import licence;
  10. import base.win;
  11. import base.ini;
  12. import std.io;
  13. import base.gui;
  14. import std.string;
  15. import std.time;
  16. import std.file;
  17.  
  18. Dialog ref dlg;
  19. HWND Button1;
  20. FlashObject Object;
  21.  
  22.  
  23. void Function1(Dialog ref dlg, int param){
  24. Object = FlashObjectFind("VerticalAnglesCC");
  25. while(Object.IsObject())
  26. {
  27. Object.SetDouble("_angleUp", 999999);
  28. Object.SetDouble("_angleDown", 999999);
  29. Object = FlashObjectFind(Object);
  30. }
  31. }
  32.  
  33. void EventClose(Dialog ref dlg, int param){}
  34. dlg = CreateDialog("Чит", 200, 200, 300, 150, EventClose);
  35. Button1 = dlg.AddButton("Активировать AIM", 7, 7, 200, 25, Function1, 1);
  36.  
  37. dlg.Show(1);
  38. dlg.OnTop(1);
  39. dlg.WaitClose();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement