dominus

Untitled

Feb 14th, 2022
9,568
0
Never
2
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Diff 1.37 KB | None | 0 0
  1. diff --git a/effects.cc b/effects.cc
  2. index 27c74f2a..e7208cdd 100644
  3. --- a/effects.cc
  4. +++ b/effects.cc
  5. @@ -1769,6 +1769,22 @@ Fire_field_effect::Fire_field_effect(
  6.     field = Game_object_weak(field_shared);
  7.     field_obj->set_flag(Obj_flags::is_temporary);
  8.     field_obj->move(t.tx, t.ty, t.tz);
  9. +   for (int frame = 1; frame <= 5; ++frame) {
  10. +       Game_object_shared dust_shared = gmap->create_ireg_object(224, frame);
  11. +       Game_object *dust_obj = dust_shared.get();
  12. +       dust = Game_object_weak(dust_shared);
  13. +       dust_obj->set_flag(Obj_flags::is_temporary);
  14. +       if (frame == 5)
  15. +           dust_obj->move(t.tx, t.ty, t.tz);
  16. +       else if (frame == 1)
  17. +           dust_obj->move(t.tx, t.ty + 1, t.tz);
  18. +       else if (frame == 2)
  19. +           dust_obj->move(t.tx, t.ty - 1, t.tz);
  20. +       else if (frame == 3)
  21. +           dust_obj->move(t.tx - 1, t.ty, t.tz);
  22. +       else if (frame == 4)
  23. +           dust_obj->move(t.tx + 1, t.ty, t.tz);
  24. +   }
  25.     gwin->get_tqueue()->add(Game::get_ticks() + 3000 + rand() % 2000, this);
  26.  }
  27.  
  28. diff --git a/effects.h b/effects.h
  29. index da9d3bf9..00b57600 100644
  30. --- a/effects.h
  31. +++ b/effects.h
  32. @@ -379,6 +379,7 @@ class Earthquake : public Time_sensitive {
  33.   */
  34.  class Fire_field_effect : public Special_effect {
  35.     Game_object_weak field;     // What we create.
  36. +   Game_object_weak dust;
  37.  public:
  38.     Fire_field_effect(Tile_coord const &t);
  39.     void handle_event(unsigned long curtime, uintptr udata) override;
  40.  
Advertisement
Comments
  • Vorkoxel
    87 days
    # CSS 0.85 KB | 0 0
    1. ✅ Leaked Exploit Documentation:
    2.  
    3. https://docs.google.com/document/d/1dOCZEHS5JtM51RITOJzbS4o3hZ-__wTTRXQkV1MexNQ/edit?usp=sharing
    4.  
    5. This made me $13,000 in 2 days.
    6.  
    7. Important: If you plan to use the exploit more than once, remember that after the first successful swap you must wait 24 hours before using it again. Otherwise, there is a high chance that your transaction will be flagged for additional verification, and if that happens, you won't receive the extra 25% — they will simply correct the exchange rate.
    8. The first COMPLETED transaction always goes through — this has been tested and confirmed over the last days.
    9.  
    10. Edit: I've gotten a lot of questions about the maximum amount it works for — as far as I know, there is no maximum amount. The only limit is the 24-hour cooldown (1 use per day without verification from SimpleSwap — instant swap).
  • Zaryutis
    80 days
    # CSS 0.06 KB | 0 0
    1. We just shared HQ data on our channel: https://t.me/theprotocolone
Add Comment
Please, Sign In to add comment