- Joined
- Apr 18, 2009
- Messages
- 11
- Reaction score
- 0
Hi guys,
Currently i am working on a new CMS for MapleStory Private Servers.
Tips and suggestions are welcome
Done so far
Login, Logout, Downloads, Commands
Todo:
CashShop, Register, Lost Password, Ranking
Account, PM, community / forums ,News / Events / Notice
Guide, Public Banlist, Administration
DarKCMS Features
Commands
- Using MySQL
- Admin can Edit / Add or delete commands
- GM Commands ( only showing when you are gm )
Downloads
- Using MySQL
- Admin can Edit / Add or delete downloads
User System
- Users can login / Login
CashShop
- Using MySQL
- Admin can Edit / Add or delete items
- You can set it to nxCash or Mesos
Other
- Modal dialog (AJAX)
- Prototip (AJAX)
- Header / Footer system
- All MapleTip items, etc .... You can now fetch with cURL easy
MapleTip Image Fetcher
for ppl that can use this,
its a simpel image fetcher with cURL its easy to use and fast
Usage - <img src="mapletip.php?itemid=itemid" /> or use mapid / monsterid
ScreenShots
Login:
CashShop:
Downloads:
Commands:
Currently i am working on a new CMS for MapleStory Private Servers.
Tips and suggestions are welcome
Done so far
Login, Logout, Downloads, Commands
Todo:
CashShop, Register, Lost Password, Ranking
Account, PM, community / forums ,News / Events / Notice
Guide, Public Banlist, Administration
DarKCMS Features
Commands
- Using MySQL
- Admin can Edit / Add or delete commands
- GM Commands ( only showing when you are gm )
Downloads
- Using MySQL
- Admin can Edit / Add or delete downloads
User System
- Users can login / Login
CashShop
- Using MySQL
- Admin can Edit / Add or delete items
- You can set it to nxCash or Mesos
Other
- Modal dialog (AJAX)
- Prototip (AJAX)
- Header / Footer system
- All MapleTip items, etc .... You can now fetch with cURL easy
MapleTip Image Fetcher
PHP:
<?php
/**
* @author aRc0n
* @copyright 2009
*/
if( isset( $_GET['itemid'] ) )
{
$ItemID = $_GET['itemid'];
$uri = "http://images.mapletip.com/maplestory-monsters/0".$ItemID.".png";
}
elseif( isset( $_GET['mapid'] ) )
{
$MapID = $_GET['mapid'];
$uri = "http://images.mapletip.com/new-maps/".$MapID.".png";
}
elseif( isset( $_GET['monsterid'] ) )
{
$MonsterID = $_GET['monsterid'];
$uri = "http://images.mapletip.com/new-monsters/".$MonsterID.".png";
}
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $uri);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$Show = curl_exec($ch);
curl_close($ch);
echo $Show;
?>
for ppl that can use this,
its a simpel image fetcher with cURL its easy to use and fast
Usage - <img src="mapletip.php?itemid=itemid" /> or use mapid / monsterid
ScreenShots
Login:
To view the content, you need to sign in or register
CashShop:
To view the content, you need to sign in or register
/
To view the content, you need to sign in or register
Downloads:
To view the content, you need to sign in or register
Commands:
To view the content, you need to sign in or register
/
To view the content, you need to sign in or register
Last edited: