Yes it kinda worked with Wine when I last changed. Check this page: http://appdb.winehq.org/objectManager.p … p;iId=1873
2 2011-10-12 06:30:47
Re: How to install WebShop (8 replies, posted in Guides for server administrators)
Check if your database connection setting. Also check if you have the mssql extension installed http://php.net/manual/en/book.mssql.php
3 2011-02-12 12:33:33
Topic: Season 6 items added to the main site (1 replies, posted in Announcements)
Season 6 items are added to the main website: http://muonlinehelp.com
4 2011-01-27 18:10:16
Re: Need Webiste Developer (6 replies, posted in Website releases)
Get MuKiTo ( http://mukito.muonlinehelp.com/ ) and customize it.
5 2011-01-26 10:57:30
Re: Need Webiste Developer (6 replies, posted in Website releases)
Checked your forum but couldn't find what you need developed.
6 2011-01-12 20:16:59
Re: Help me any 1 pless (1 replies, posted in Help / FAQ)
Sorry mate but really couldn't understand what are you asking. Just post the questions, please.
8 2010-02-28 09:20:18
Re: Season IV Full Release (19 replies, posted in Server Releases)
^_^ ofc i cracked it....
ps: i am using no-ip.org or maybe i need to set up it with my ip public not no-ip.org???
Try if it works with the external IP address.
9 2010-02-28 08:51:31
Re: Season IV Full Release (19 replies, posted in Server Releases)
nvm......I have installed Windows xp sp 3
i have Question guys pls help me if u can ....:D
how to setting up this server for public......becoz i cant connect to the client but i test my server here http://www.muonlinehelp.com/online thats says my server was runing O_ohelp
Did you patch the client with your server IP ?
10 2010-02-27 18:17:26
Re: Season IV Full Release (19 replies, posted in Server Releases)
I try to install framework 2.0 but I cant install it
anyone can help?
This thread can be useful for installing .NET 2.0. Unfortunately I'm not on W7 and cannot test it.
11 2009-12-14 08:21:24
Topic: Generator works (0 replies, posted in Announcements)
The Shop generator works again .
12 2009-11-10 18:24:34
Re: MUModelView 0.02 (3 replies, posted in Tools)
The font used is hardcoded in the source. Make sure you have simhei.ttf in your fonts folder. If you don't have the font cop another font and change its name to simhei.ttf.
13 2009-10-23 18:04:11
Topic: MU Blue the new MU Online from Webzen (1 replies, posted in Announcements)
14 2009-10-09 20:09:43
Topic: Guild unsubscribe bug fix (0 replies, posted in Help / FAQ)
This query will allow you to fix the players which cannot get out of guild. Execute it in Query manager.
declare @gloop char(15)
declare @gctr int
declare @tctr int
set @tctr=0
set @gctr=0
select G_name from Guild
set @tctr = @@ROWCOUNT
while @gctr<@tctr
BEGIN
set @gctr = @gctr + 1
select @gloop=G_name from Guild
select * from Guildmember where G_Name=@gloop
IF @@ROWCOUNT < 2
begin
delete from Guildmember where G_Name = @gloop
delete from Guild where G_Name = @gloop
end
END
15 2009-10-09 20:07:11
Topic: Light SQL Injection protection (0 replies, posted in Help / FAQ)
To protect your MUWeb against the most common SQL injection attacks, place the following code in your config.php:
<?php
$ip = $_SERVER['REMOTE_ADDR'];
$time = date("l dS of F Y h:i:s A");
$script = $_SERVER[PATH_TRANSLATED];
$fp = fopen ("D:/MuServer/[WEB]SQL_Injection.txt", "a+");
$sql_inject_1 = array(";","'","%",'"'); #Whoth need replace
$sql_inject_2 = array("", "","","""); #To wont replace
$GET_KEY = array_keys($_GET); #array keys from $_GET
$POST_KEY = array_keys($_POST); #array keys from $_POST
$COOKIE_KEY = array_keys($_COOKIE); #array keys from $_COOKIE
/*begin clear $_GET */
for($i=0;$i<count($GET_KEY);$i++)
{
$real_get[$i] = $_GET[$GET_KEY[$i]];
$_GET[$GET_KEY[$i]] = str_replace($sql_inject_1, $sql_inject_2, HtmlSpecialChars($_GET[$GET_KEY[$i]]));
if($real_get[$i] != $_GET[$GET_KEY[$i]])
{
fwrite ($fp, "IP: $ip\r\n");
fwrite ($fp, "Method: GET\r\n");
fwrite ($fp, "Value: $real_get[$i]\r\n");
fwrite ($fp, "Script: $script\r\n");
fwrite ($fp, "Time: $time\r\n");
fwrite ($fp, "==================================\r\n");
}
}
/*end clear $_GET */
/*begin clear $_POST */
for($i=0;$i<count($POST_KEY);$i++)
{
$real_post[$i] = $_POST[$POST_KEY[$i]];
$_POST[$POST_KEY[$i]] = str_replace($sql_inject_1, $sql_inject_2, HtmlSpecialChars($_POST[$POST_KEY[$i]]));
if($real_post[$i] != $_POST[$POST_KEY[$i]])
{
fwrite ($fp, "IP: $ip\r\n");
fwrite ($fp, "Method: POST\r\n");
fwrite ($fp, "Value: $real_post[$i]\r\n");
fwrite ($fp, "Script: $script\r\n");
fwrite ($fp, "Time: $time\r\n");
fwrite ($fp, "==================================\r\n");
}
}
/*end clear $_POST */
/*begin clear $_COOKIE */
for($i=0;$i<count($COOKIE_KEY);$i++)
{
$real_cookie[$i] = $_COOKIE[$COOKIE_KEY[$i]];
$_COOKIE[$COOKIE_KEY[$i]] = str_replace($sql_inject_1, $sql_inject_2, HtmlSpecialChars($_COOKIE[$COOKIE_KEY[$i]]));
if($real_cookie[$i] != $_COOKIE[$COOKIE_KEY[$i]])
{
fwrite ($fp, "IP: $ip\r\n");
fwrite ($fp, "Method: COOKIE\r\n");
fwrite ($fp, "Value: $real_cookie[$i]\r\n");
fwrite ($fp, "Script: $script\r\n");
fwrite ($fp, "Time: $time\r\n");
fwrite ($fp, "==================================\r\n");
}
}
/*end clear $_COOKIE */
fclose ($fp);
?>
Note! : don't forget to change the location of the log file, on line 5, according to your installation.
16 2009-09-26 18:41:11
Re: List of useful programs to create MU Online server (3 replies, posted in Guides for server administrators)
Victoria, thank you again for the useful post.
17 2009-09-22 18:03:06
Topic: Mu Online FAQs and Walkthroughs (0 replies, posted in Help / FAQ)
Rather old, but some of them are still useful: http://www.gamefaqs.com/computer/doswin … 19061.html
19 2009-09-22 18:01:44
Topic: Chaos Card (0 replies, posted in Guides for players)
The Chaos Card is a new and exciting feature in the world of MU. It introduces a new lottery system where players purchase the Chaos Card and gamble it for the chance to get rare items. Once one has started, it'll be hard to stop.
How to combine:
1. Access the Cash Shop by pressing "X" or through a character’s inventory while in safe zones and purchase the Chaos Card.
2. Warp to Devias 3 and speak with the Chaos Master NPC who is located in the castle.
3. Make space in your inventory which is 6x4 large. Place the Chaos Card in the combination window then combine.
4. Get your item and enjoy!
Partial list of possible items:
Weapons *
Sword of Destruction
Thunder Blade
Dark Breaker
Celestial Bow
Saint Crossbow
Chaos Weapon
Shields *
Elemental Shield
Grand Soul Shield
Armor *
Great Dragon Armor
Grand Soul Armor
Red Spirit Armor
Hurricane Armor
Dark Steel Armor
Note: * Items have excellent counterparts
Others
Red Fenrir
Dark Horse
Dark Raven
Jewels and Jewel bundles
Rings
Pendants
Promotional
Rare Item Ticket
20 2009-09-22 18:01:07
Topic: Global MU Online – Season 4 is available (0 replies, posted in Guides for players)
Greetings MUtizens!
We are happy to announce that the Global MU Online – Season 4 is finally available.
Please see the following schedule.
Global MU Online with a new realm will start on May, 21st 2009(PST)
Everyone with Webzen.com account is qualified to access and play the game from scratch. And unlike the previous beta testing where characters were wiped, users can now save their account and character won’t be deleted.
Thank you in advance for your support and participation!
More information here: http://forum.ragezone.com/f192/new-glob … en-575573/
21 2009-09-22 18:00:09
Topic: Resources (0 replies, posted in Guides for server administrators)
Ragezone's Mu Online forum: http://forum.ragezone.com/f192
Mu Online Help Store generator: http://muonlinehelp.com/generate
Mu Online Help Move generator: http://muonlinehelp.com/maps
MuWeb forum: http://www.muweb.org
D3Scene: http://www.d3scene.com/forum/mu-online/
Coderzfactory: http://www.coderzfactory.org
22 2009-09-22 17:57:30
Topic: New items added (0 replies, posted in Guides for server administrators)
New items added to the main site (http://muonlinehelp.com):
"0";"29";"0";"Arhangel Guard"
"0";"30";"0";"Balgass Minion"
"1";"9";"0";"Berserc Axe"
"1";"10";"0";"Gigantis Axe"
"1";"11";"0";"Blunt Beast Axe"
"1";"12";"0";"Art of Battle Axe"
"1";"13";"0";"Duel Axe"
"1";"14";"0";"Evil Rabbit Axe"
"1";"15";"0";"Shadow War Axe"
"1";"16";"0";"Werewolf Axe"
"1";"17";"0";"Sirr Blade"
"1";"18";"0";"Heavens Divider"
"2";"19";"0";"Sceleton Scepter"
"2";"20";"0";"Larken Scepter"
"2";"21";"0";"Dark King"
"2";"22";"0";"Death Spirit"
"2";"23";"0";"Conquer Scepter"
"2";"24";"0";"Night Mare Scepter"
"3";"12";"0";"Siege Guard Spear"
"3";"13";"0";"Dreadfear Spear"
"3";"14";"0";"Twin Tail Spear"
"3";"15";"0";"Scout Spear"
"3";"16";"0";"Werewolf Spear"
"3";"17";"0";"Bill of Balgass"
"3";"18";"0";"Night Mare Scepter"
"4";"25";"0";"Deadfear Bow"
"4";"26";"0";"Balram Bow"
"7";"48";"0";"Gild Master Helm"
"7";"56";"0";"Mystic Helm"
"7";"57";"0";"Predador Helm"
"13";"46";"0";"Devil Square Ticket"
"13";"47";"0";"Blood Castle Ticket"
"13";"48";"0";"Kalima Ticket"
"14";"53";"0";"Talisman of Luck"
"14";"54";"0";"Chaos Card"
"14";"58";"0";"Rare Item Ticket1"
"14";"59";"0";"Rare Item Ticket2"
"14";"60";"0";"Rare Item Ticket3"
"14";"61";"0";"Rare Item Ticket4"
"14";"62";"0";"Rare Item Ticket5"
Also aliases are added for items.
23 2009-09-22 17:56:42
Topic: MuWeb Account Manager 0.1 (0 replies, posted in Website releases)
MuWeb Account Manager 0.1
DESCRIPTION
What is MuWeb Account Manager? a very useful application for client side.MuWeb Account Manager is made from 2 sides:
1. - Client Side, wich is MuWeb Account Manager.exe connected to server side,
What can do clients with MuWeb Account Manager.exe:
* - They can create new accounts
* - They can find out the lost password
* - They can change password
* - They can reset characters
* - They can add stats
* - They can clear pk status
* - They can warp
* - They can send client bug report to administrator (server side), wich admin can read them latter and maybe fix them ^_^
(All those without to enter server`s website)2. - Server Side, are all php files wich MuWeb Account Manager Client Side need them.
More information: http://www.muweb.org/f176/release-muweb … -0-1-a-23/
24 2009-09-22 17:55:50
Topic: MuWeb 0.9 Market System (0 replies, posted in Website releases)
Can be found here: http://www.muweb.org/f176/muweb-0-9-mar … free-2636/
25 2009-09-22 17:53:39
Topic: Global Mu Online transfered back to Webzen (0 replies, posted in Guides for server administrators)
[April 21, 2009] [Announcement]GMO transfers to Webzen
Greetings MUtizens,
GMO is transferring back to our partners Webzen.
For details please check out the GMO forum here.
We also have put up an FAQ concerning this subject here
We have another month but I will miss you all. Thank you so much.
Regards and lots of love,
GMO-Ran