Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[Release] ExMuOnline Theme for mvCore + crew module !

cMu

Elite Diviner
Joined
Jan 8, 2017
Messages
427
Reaction score
133
Hello, so i found some template of exmuonline in ragezone that has HTML CSS only.
(mean that its cant be used to any server)
i adapet the theme for mvCore so now everyone can enjoy!
i code a lot time ago crew module for mvCore that working on DB. (guide next)

Screen Shots:



User Panel:


Crew Module Guide:

Open Sql Studio / Query and run this:

Code:
Use MuOnline ALTER TABLE Character ADD Role varchar(10);

then run this query:

Code:
Use MuOnline
Update Character Set Role = '9' where name = 'Nick'

9 - Role
Nick - change to your player nick

you can see the role numbers at the file inc.crew.php or here:
Code:
9 - Owner
8 - Coder
7 - OA
6 - CEO
5 - CEO
4 - GM
so that mean that if you want put example DorC nick GM Role you run this query:

Code:
Use MuOnline
Update character set role = '4' where name = 'DorC'

found bug? send messeage with screen shot and i will fix when i have time :)

Credits:

Design - whoever that design this
GoshTeam - release template (html css)
cMu - Fixing some broken image / photoshop edits + adapet mvcore + releasing crew.php module



​Have fun guys ;)
 
Last edited:

cMu

Elite Diviner
Joined
Jan 8, 2017
Messages
427
Reaction score
133
compatible with season 9 ignc?
It's just theme, if MvCore support at IGCN season 9 so yeah sure, you can use MvCore with my theme.
If not just change tables (querys) to match DB of IGCN.
 
Junior Spellweaver
Joined
Dec 20, 2015
Messages
175
Reaction score
10
Hello, so i found some template of exmuonline in ragezone that has HTML CSS only.
(mean that its cant be used to any server)
i adapet the theme for mvCore so now everyone can enjoy!
i code a lot time ago crew module for mvCore that working on DB. (guide next)

Screen Shots:



User Panel:


Crew Module Guide:

Open Sql Studio / Query and run this:

Code:
Use MuOnline ALTER TABLE Character ADD Role varchar(10);

then run this query:

Code:
Use MuOnline
Update Character Set Role = '9' where name = 'Nick'

9 - Role
Nick - change to your player nick

you can see the role numbers at the file inc.crew.php or here:
Code:
9 - Owner
8 - Coder
7 - OA
6 - CEO
5 - CEO
4 - GM
so that mean that if you want put example DorC nick GM Role you run this query:

Code:
Use MuOnline
Update character set role = '4' where name = 'DorC'

found bug? send messeage with screen shot and i will fix when i have time :)

Credits:

Design - whoever that design this
GoshTeam - release template (html css)
cMu - Fixing some broken image / photoshop edits + adapet mvcore + releasing crew.php module



​Have fun guys ;)

Any one knows, how to remove nick from Crew list?



 
Back
Top