Skip to content
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Donate
Collapse

Plutonium

  1. Home
  2. MW3 Modding Support & Discussion
  3. Checking when the game ends?

Checking when the game ends?

Scheduled Pinned Locked Moved MW3 Modding Support & Discussion
2 Posts 2 Posters 105 Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • techboy04gamingundefined Offline
    techboy04gamingundefined Offline
    techboy04gaming
    wrote on last edited by
    #1

    Is it possible to check when the game ends so I can send some messages during the last few seconds after everyone dies? Im quite new to modding.

    1 Reply Last reply
    0
    • S3VDITOundefined Offline
      S3VDITOundefined Offline
      S3VDITO
      wrote on last edited by S3VDITO
      #2
      // Variant 1
      level.OnNotify("game_ended", fun(args) {
          // magic
      });
      
      // Variant 2
      level.OnNotify("game_over", fun(args) {
          // magic
      });
      
      // Variant 3
      level.OnNotify("block_notifies", fun(args) {
          // magic
      });
      
      1 Reply Last reply
      0

      • Login

      • Don't have an account? Register

      • Login or register to search.
      • First post
        Last post
      0
      • Recent
      • Tags
      • Popular
      • Users
      • Groups
      • Donate