ID:823609
Jun 19 2012, 1:41 pm (Edited on Jun 19 2012, 1:51 pm)
|
|
I am using Forum Account's Action RPG Framework as my core codes by the player Saving doesnt allow me to code my own title screen. i am currently using so the title screen is based on Map but HUD over it is being used by HUD Groups. my question is how can i make my title screen work same way as it was working before.
| |
#2 Jun 19 2012, 3:56 pm
|
|
If i can get you title screen. As library can you help me implement
| |
#3 Jun 20 2012, 4:06 am
|
|
I'm not sure what you mean.
| |
#4 Jun 20 2012, 4:11 am
|
|
like if I give you the title screen code and everything title screen is using can you help me get those to work in your Action RPG library
| |
#5 Jun 20 2012, 5:11 am
|
|
Sure, I'll try.
| |
#6 Jun 20 2012, 5:33 am (Edited on Jun 20 2012, 6:17 am)
|
|
Link has been deleted... // this is my private hosting
| |
#7 Jun 20 2012, 6:02 am
|
||
It looks like your title screen is just a part of the map, so you just need to move the mob there:
| ||
Forum_account wrote:
It looks like your title screen is just a part of the map, so you just need to move the mob there:The problem is when you press enter on Play Game then select slot it doesn't hide the pointer and text made by HUD Groups Plus can i have your MSN or whatever Messaging service you use? | ||
#9 Jun 20 2012, 6:18 am
|
|
Do you want to use the framework's character selection menu of is that handled by your title screen?
If you're using the library's mob selection menu, that stuff should automatically be hidden when they make a selection. If it's not, you can call mob_selection.hide() to hide it. | |
This is how i want it to be
^this is what was suppose to happen^
^This is what happening^ These all are located in Title Screen Folder. | |||
#11 Jun 20 2012, 6:45 am
|
|
If the pointer that's still on the screen is from your menu, I'm not sure how to fix it.
You don't have to use the framework's title screen and mob selection. You can create your own instead. It seems like that'll be easier than making yours work with parts of mine. All you need to do is provide a menu that lets the player select one of their characters (stored in the client.mobs list) and call client.connect(m) where m is the mob they selected. If they want to create a new character, just call client.new_character(). | |
#12 Jun 20 2012, 6:50 am
|
|
Ok so I just code window showin menue and done?
| |
#13 Jun 20 2012, 6:57 am
|
|
I'm not sure what you mean, but yes, you can just code your own menu. You can look at the code for the mob selection menu that's defined by the library to see what procs it's calling to make it actually create a new character or connect the player to an existing character.
| |
If you override its show() proc to do nothing, it won't appear.
You can also override mob/temporary/Login() to make things happen when a player first connects to the game.