ScriptPrint

From Amulets & Armor Wiki
Jump to: navigation, search

Print( [Message])

Displays a message on the player's screen.

Note: In 200 block scripts, this messages a single player. In 1-199 block scripts, it messages all players.

Arguments

Message - A string to display

Example


11:     //mo litenen
        Block(morelitenin) ;
        Print("The air around you begins to stir") ;
        Delay(70) ;
        GenerateMissile(4006, -305, -606, 338, -149, -1320, 230, 40) ;
        Delay(70) ;
        GenerateMissile(4006, -305, -606, 338, 103, -953, 170, 40) ;
        Delay(70) ;
        GenerateMissile(4006, -305, -606, 338, 103, -1082, 170, 40) ;
        Delay(240) ;
        Unblock(morelitenin) ;
        End() ;




Back to Scripting Main Page