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: https://postimg.org/image/ewkutaddf/
Home Loggedin: https://postimg.org/image/go365ql3h/
Login: https://postimg.org/image/e5malvaot/87e6cf37/
Register: https://postimg.org/image/8kx1qw1w3/
Updated MapleTip Image Fetcher
Usage - <img src="*.php?itemid=itemid" /> or use mapid / monsteridPHP Code:<?php
/**
* @author aRc0n
* [MENTION=822345]Copyright[/MENTION] 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;
Tips and suggestions are welcome!



Reply With Quote

