• Listen to a special audio message from Bill Roper to the Hive Workshop community (Bill is a former Vice President of Blizzard Entertainment, Producer, Designer, Musician, Voice Actor) 🔗Click here to hear his message!
  • Read Evilhog's interview with Gregory Alper, the original composer of the music for WarCraft: Orcs & Humans 🔗Click here to read the full interview.
  • Create a faction for Warcraft 3 and enter Hive's 19th Techtree Contest: Co-Op Commanders! Click here to enter!
  • Create a void inspired texture for Warcraft 3 and enter Hive's 34th Texturing Contest: Void! Click here to enter!
  • The Hive's 21st Texturing Contest: Upgrade is now concluded, time to vote for your favourite set of icons! Click here to vote!

Is it possible to prevent player from saving?

Status
Not open for further replies.
Level 9
Joined
Apr 19, 2011
Messages
447
I'm sorry, I don't know anything about JASS.
However, I suppose that this may be the only way to do what I want. So, I would be very glad if you could teach how exactly can I implement this script in my proyect, and how to work with it. With this kind of things, I'm a true noob.
Thanks in advance for your help.

Regards
 
Level 9
Joined
Apr 19, 2011
Messages
447
Thank you!
I tested the map, and it works perfectly. I suppose I will include this in my proyect, it's exactly what I was looking for.
Thank you very much.

One more thing... can I ask why does it show a dialog 12 times with a "for" loop (in the GUI version). Won't it work, for example, showing one single dialog?
I'm glad I found a solution for my problem, but I want to understand it too.

Regards
 
This work just fine.
  • Example
    • Events
      • Game - The game is about to be saved
    • Conditions
    • Actions
      • Dialog - Show Dialog for Player 1 (Red)
      • Wait 0.00 seconds
      • Dialog - Hide Dialog for Player 1 (Red)
It's the most basic example.

This work for all players:
  • Example
    • Events
      • Game - The game is about to be saved
    • Conditions
    • Actions
      • Custom script: call DialogDisplay( GetLocalPlayer(), udg_Dialog, true)
      • Wait 0.00 seconds
      • Custom script: call DialogDisplay( GetLocalPlayer(), udg_Dialog, false)
 
Status
Not open for further replies.
Top