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!

LightMS - CMS

Newbie Spellweaver
Joined
Jul 19, 2012
Messages
8
Reaction score
2
Hi guys

Currently i am working on a CMS for MapleStory Private Servers.
Its the old DarKCMS

Done so far
Login, Logout, News, Register

Todo:
Downloads, Commands, CashShop, Lost Password, Ranking
Account, PM, community / forums ,Guide, Public Banlist, Administration

ScreenShots
Home:
Linnxy - LightMS - CMS - RaGEZONE Forums

Home Loggedin:
Linnxy - LightMS - CMS - RaGEZONE Forums

Login:
Linnxy - LightMS - CMS - RaGEZONE Forums

Register:
Linnxy - LightMS - CMS - RaGEZONE Forums


Updated MapleTip Image Fetcher
PHP:
<?php

/**
 * @author aRc0n
 * [USER=822345]Copyright[/USER] 2017
 */

if( isset( $_GET['itemid'] ) )
{
    $ItemID = $_GET['itemid'];
    $uri    = "https://images.mapletip.com/maplestory-monsters/0".$ItemID.".png";
}
elseif( isset( $_GET['mapid'] ) )
{
    $MapID = $_GET['mapid'];
    $uri   = "https://images.mapletip.com/new-maps/".$MapID.".png";
}
elseif( isset( $_GET['monsterid'] ) )
{
    $MonsterID = $_GET['monsterid'];
    $uri       = "https://images.mapletip.com/new-monsters/".$MonsterID.".png";
}

$ch = curl_init();

curl_setopt($ch, CURLOPT_URL, $uri);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

$Show = curl_exec($ch);

curl_close($ch);

echo $Show;
Usage - <img src="*.php?itemid=itemid" /> or use mapid / monsterid

Tips and suggestions are welcome!
 
Last edited:
Back
Top