Quantcast
Channel: RaGEZONE - MMO Development Forums
Viewing all 30214 articles
Browse latest View live

EternalMu|97d+99i|9999x|Old-School|

$
0
0
Grand opening date:

09/06/2017 - 20:00
(GMT + 01:00)

Website: EternalMu


Server Info:
* Ver: 97d+99i
* Exp: 9999x
* Drop: 80%
* Bless Bug: ON
* Max level: 350
* Max stats: 32767
* Guild Create Level: 100
* Points Per level: DK/DW/Elf - 5 MG - 7

Reset Info:
* Max Level: 350
* Stats After Reset: Keep stats
* Reset Command in Game : /reset (Will be but for now we have problem with it and rr will be on site for now)

Quests in Game
* Yes - Quest NPC


Ingame Commands

* /add - add stats: /addstr, /addagi, /addvit, /addene
* /post - global chat
* /pkclear - Yes
* /marry - Yes
*
/quest - Yes (Check Quest progress)
* /online Yes (Check online ppl)
* /time Tak/Yes (Show server time)

Jewel Success Rate:
* Jewel Of Bless Success Rate(Luck/No luck): 100%
* Jewel Of Soul Success Rate (Luck/No Luck): 100%


Chaos Machine Success Rates

* Item +10 Success Rate (Luck/No Luck): 100%
* Item +11 Success Rate (Luck/No Luck): 100%

Server Events
* Blood Castle Event
* Devil Square Event
* Golden Invasion

* Happy Hour
* Party exp event* Lucky Jevels
Special Event Rewards

* Blood Castle (1-3) - Box of Kundun +4 - Blood Castle (3-6) Box of Kundun +5
Spots

Many spots with many mobs


Party experience

Yes
----------------------------------------------------------------------------------------------------------------

Screens from the server:


[Addon] Smileys in News-Comments

$
0
0
Hello,
For BrainCMS

Screen: https://retrotown.ws/index.php/Image...ZmQwNC5wbmc%3D

Setup
1) Download the zip and replace the files
2) In system/brain-config.php add this code at the bottom of the file (above ?>)

Code:


  1. /**
  2. * Smiley Addon
  3. */
  4. $config['smileys'] = [
  5. /**
  6.     * Enable / disable the smileys
  7.     */
  8. 'enabled' => true,
  9. /**
  10.     * Directory where the smileys are stored.
  11.     */
  12. 'directory' => '/templates/brain/style/images/smileys',
  13. /**
  14.     * Add your own replacements
  15.     */
  16. 'replacements' => [
  17. ':)'    => 'smiling.svg',
  18. ':('    => 'sad.svg',
  19. ';)'    => 'wink.svg',
  20. ':P'    => 'tongue-out-1.svg',
  21. ':D'    => 'happy-1.svg',
  22. ':\'('  => 'unhappy.svg',
  23. '>:(' => 'angry.svg',
  24. ':*'    => 'kissing.svg',
  25.     ],
  26. ];

If done correctly, you now have smileys in the next comment someone posts.
Attached Files

Extracting textures and models

$
0
0
Tell me how to extract textures and models from "Mu Origin"?

I need to pull models from several locations.

I unpacked the APK and in the / Map folder there are files in the .unity3d format that can not be opened.

Help me to understand.

Install Hulu's pw-web

$
0
0
Ok this tutorial is a work in progress so user help is definitely appreciated.

The first thing I want to say is I have not tried this on anything but ubuntu 14 I don't recommend trying it with any version of php other than 5.5.9 because 5.6 and 7.0 gave me hell and never exactly were able to get the install right. Now lets get down to the fun part setting all of this up.

I used as I said ubuntu 14 but I also followed my guide to setup a 151 server so if this does not work and you have used a different setup I take no responsibility. (If you want to do a new install link is in my signature.). I DO NOT KNOW IF THIS WILL WORK WITH ANY SERVER SETUP OTHER THAN THE ONE I USED.

The first thing you need to do is get the files. HERE

Now we need to install some things.

First do

Code:

apt-get update
then
apt-get install curl php5-cli git  this installs php dependencies you are going to need.

Next you need to install composer

Code:

curl -sS https://getcomposer.org/installer | sudo php -- --install-dir=/usr/local/bin --filename=composer
Now the php gd extention.

Code:

apt-get install php5-gd; service apache2 restart
Note the restart is necessary if you don't do it it will create problems.

Now this piece comes directly from the get hub for the project but I will explain it better.

First go ahead and upload the files to your www directory not everything in the root of the pw-web-master file should be in the root of www it should not be in a folder. If your directory doesn't look like it does below you need to move the files.

I am not going to go through how to chmod folders via terminal again if you followed my guide you should know how.If you didn't the info is still there or you can just use winSCP or whatever ftp client you use to do it.

You need to set the permissions on a few folders to 777 I know spare me but it is the only way you are going to get it to work.

storage/app/
storage/framework/
storage/logs/
bootstrap/cache/
.env

all of these need to be 777 the . env can be a little tricky as . files get hidden so I am going to help you out there. HERE is a copy of the .env file the dot has been replaced with an underscore so it wont be hidden when you upload it. Edit it to match your database credentials upload it to your www directiory.. chmod it to 777 then rename it back to .env it will prolly vanish on you at that point but its there. Also enable mod rewrite a2enmod rewrite then restart apache with service apache2 restart

Ok assuming all the folders and the .env file have been chmoded you now need to edit two files.

First is
apache2.conf

You can find it in etc apache2 You need to change one setting here.

Code:

<Directory /var/www/>
        Options Indexes FollowSymLinks
        AllowOverride None
        Require all granted
</Directory>

Change AllowOverride to All instead of None.

The second file is inside sites-available in the apache2 folder 000-default.conf

This will change your root directory to www/public

Code:

ServerAdmin webmaster@localhost
        DocumentRoot /var/www/html

Change DocumentRoot to var/www/public.

restart apache2 again.

Now go to your www directory then run these commands.

Code:

composer install this will take a minute so be patient.

php artisan migrate --seed  this will populate the needed tables in your datbase

php artisan key:generate this create your key.

Now go to your domain or ip address it should load up the installer if it doesn't you prolly have the permissions wrong redo the permissions on the folders from earlier in the post. Now the important thing here is the version setting and the encryption the version if you are using my guide is 101 the encryption will be md5.

Anyway it should work from there. I have no idea how to get admin rights so I will make a post later on that as well as how to add to the shop etc.

- - - Updated - - -

Oh if you want to see it in action HERE

- - - Updated - - -

Ok so two things to make yourself admin just go into your database in the user table under role set it to administrator you will then have admin under your account settings. Also apparently it does work with 5.6 php other than that have a nice day guys.

Use navicat to manage databases. ( replace phpmyadmin for security. )

$
0
0
Ok this might get moved but its something I learned later in my life that should probably help. phpmyadmin is not very secure mostly because everyone who knows anything about webhosting knows about it. I find a better way to manage your sql db;s is to do it remotely so I am going to give you a tutorial on how to get navicat working on your server or a good free alternative is HeidiSQL.

First you need to set your bind address in etc/mysql the file is my.cnf look for bind address its set to 127.0.0.1 which means the local machine aka no remote source can connect to it.

You can change this to 0.0.0.0 if you are wanting a lot of people to connect but what I would do is put your ip address here so only you can connect.

Now go to putty or whatever you use terminal if you have local access to the machine and run.
mysql -u root -p

This will open your myql console now give your user the correct permissions.


GRANT ALL PRIVILEGES ON *.* TO 'username'@'%' IDENTIFIED BY "password";

replace username and password with your login information for mysql.

You should now be able to connect to your mysql db using a remote client.

Items still dropping with no drop data in SQL

$
0
0
I purposefully didn't load any drops in to the drop data or drop data global. Somehow though mobs are still dropping items. Pink flower tube, silver ore... both coming from green mushrooms.

Where else is drop data loaded? Both drop_data and global_drop_data have no records.

- - - Updated - - -

I did resolve this. Comment out all AddExtra() in your source, namely under mapleinformationprovider.java.

Need help to make some ranking work in mucore 1.0.8

$
0
0
Hi, i'd installed MuCore 1.0.8 with Armus Premium template. The problem is that the modules TopReset,Top Online, "Duelos Wins" and "Duelos Looser" do not take the information of the server, i mean, No character appears in that rankings. The files are IGC S9 Battle Core and i don't know so much about configuring Mu as i'm newbie in that "world" ifsomeone could explain clearly how to fix it it'd be incredible. Thanks !

Mu EvoGames 1.08 Season 8.3

$
0
0
Season 8 EP 3, 1000EXP / Auto Party / Auto Reconnect / Muun System / Events / Premium website / Market / New Events/ New Itens / Active community / Stable Online / Long Term /Daily GM Events/ Weekend Bonus / And more

Bem vindo....redirecionando...

help

$
0
0
i am looking for teamhelp for setting up wow game

P2p error? - new sudden attack

$
0
0
Hello Brothers, i create new SA for all more now i have problem of P2P someone want help me? my Skype is: bruninhopacman my WhatsApp is: +5521982837587 big hug for all - NGG TEAM!

Players per channel limit

$
0
0
Hi, I already configurated my accountserver.ini

AddTail( 1, 1, "Channel 1 ", "127.0.0.1", 0, 1, 3 );

ofcourse the 3 should be the max players who can enter the flyff channel but even if i there is already 3 characters login into the first channel players can still login to channel 1, how would i really limit this ?

and can someone explain what is the use of the 0,1 after the IP Address? thank you very much

[GUNZ] Winter GunZ BETA | GunZ 1.5 | 2xp | Anti-Lead | HOT!

$
0
0
Winter GunZ will release in less than a month after almost 5 months of developing. We're only a 3 man team and all of us have jobs, but we devoted ourselves to this project and made the best of it. The Beta has been ready for quite some time but we just had some trouble with the VPN, website and forum but we have fixed those issues now and we're working on perfecting the site and forum for release now.

Beta release Date: 01/07/2017
V1 Release date: 25/08/2017


GM's: We are looking for GM's, if you are interested than you can just PM me and i will reply with the contact details of my Skype
A thread will be posted in the Gunz server section once we release: With the site, forum and client.

Winter GunZ Beta features
[CLIENT]

  • Rebirth System (rebirth at level 99 for 150 WGcoins)
  • Ingame Donation Shop and Event shop
  • Dash colors from options
  • Custom designed interface
  • 2800+ items (148 Donation items, 47 Event Items)
  • 87 maps (New maps: Starbucks, Iron Throne room)
  • Color name
  • Custom commands


[CUSTOM GAMEMODES]


  • Infected
  • Gun Game
  • Roll The Dice
  • Kill the Master (TDM; 8 player Max allowed; at least 4 required to start game - 1 person spawns with 150HP-150AP, the person receives an ak-47 and a golden dragon sword. The others spawn in the other team with no clothing and receive a renard x2 with a rusty sword. Team with no players alive wins)


[CUSTOM ITEMS]


  • Jon Snow's sword
  • More coming ...


[UPCOMING PLANS]


  • Spy Mode
  • New items
  • New maps

Store sales

$
0
0
Hello
I am testing Season 10 Episode 3 server files.I want to sell the Marlon quest item Ring of Honor to the store, but I can not find the item code in the item document How can I sell it to a store?

Good luck to everyone who answered the question.: 8 :

How to put the button that turns PK mode on and off?

$
0
0
Hello everyone. Anyone know how to put the "blue button" that turns PK mode on and off?

Where the reward of the Nation War is changed?

$
0
0
Hi. Does anyone know where the reward of the Nation War is changed?

Priston Tale 2 Colosseum and bondra set patch files?

$
0
0
Hello, I'm on a wild goose hunt to find someone who may have the Priston Tale 2 Colosseum and bondra set patch files? I'm willing to pay anybody that has the files and is willing to upload them for me to download. Please, if anybody at all knows anything about this then let me know!

hi have bug castle siege plz help

MU New Buff Items

How to put black the tail of the werefox?

$
0
0
Hi. Anyone know how to put black the tail of the werefox?

how to configure pwAdmin default template

$
0
0
Hello ragerz, I have set xml instant leveal and RW2 for new characters, but after I upload it why always come back to the original id, and if I create a new character he does not follow the default character, please explain to me "how to configure it" :sleep:

i'm a noob,thanks
Viewing all 30214 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>