Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

Splash Screen And Tip Of The Day


alextoti99
 Share

Recommended Posts

Its not sth difficult i just thought that it could help some people.

Its client Only.
Difficulty: easy.

<–--- Client ----->
First:
Right click on the project at project manager add -> add form -> Splash Screen
Then go at ModGeneral and find Public Sub Main()
If Options.Debug = 1 Then On Error GoTo ErrorHandler

+frmSplash.Show

------------------------------
+frmSplash.Hide

MenuLoop

Add the lines with the + , without the +
Also delete the SetStatus if you want or you can modify them.

Splash Screen Done.
Now the tip of the day/week/month etc.

Create again a form add-> add form -> tip of the day
Then make the form as u like to fit with the game.
And in mod input:
Select Case Command(0)
+Case "/tip"
+ frmTip.Show
Case "/help"

So when the player types /tip the tip form will show.
You can add code to initialize the graphic at it too.
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...