Page 1 of 1

[SOLVED] Cant Quit Game With "action Quit" ?

Posted: Wed Dec 21, 2016 9:49 pm
by pratomoastan
Hello, maybe at update 6.99.12 stuff is changing.
Like the code is evolving , etc.

So i spotted a problem,
i cant quit the game with action Quit .
so every time i click on it, the game do a start action instead quitting the game

Code: Select all

screen main_menu():
    
    tag menu
    
    imagemap:
        ground 'images/system/menu2.png'
        hover 'images/system/menuhover2.png'
        alpha False
        
        hotspot (304, 228, 188, 72) action Start()#(304, 228, 188, 72)
        hotspot (317, 303, 162, 52) action ShowMenu('load')#(315, 315, 164, 56)
        hotspot (293, 382, 215, 71) action ShowMenu('cfig')#(293, 382, 215, 71)
        hotspot (37, 529, 38, 49) action Quit#(17, 518, 47, 60)
        hotspot (37, 529, 38, 49) action Quit#(17, 518, 47, 60)#Quit game 

Re: [ASK] Cant Quit Game With "action Quit" ?

Posted: Wed Dec 21, 2016 10:33 pm
by PyTom
it should be Quit), not Quit. (The comments on the imagemap are a bit confusing.)

Re: [ASK] Cant Quit Game With "action Quit" ?

Posted: Thu Dec 22, 2016 3:27 am
by pratomoastan
--- Removed ---