Don't forget to give Maarten / vista4life some credits bro.
Printable View
Maarten knows I credit him but I was on about who originally found the packets and structures
Posted via Mobile Device
You know how I said I'll finish the console? Well, overall it's now 90% done.
Progress (on console):
- - Tells when a user is online.
- - Tells if user is offline.
- - Shows correct friends.
- - Sends Messages to correct user.
All I need to do is friend requesting then it's 100%.
http://img847.imageshack.us/img847/853/chatting.png
Nice work :)
Nice and also function if user hasnt enable friend request then dont work but gives message..
cool good work Alex;)
Nice updates Quackster :)
Updated thread, different pictures :)
Aslong as Im around put it down on me, put it down me, all I really want is to put it down on me. :P
Anyway, enough of my favourite songies. Looking really good Alex.
Theres few java's around there dont gotta be on ragezone to start a revolution ;]
Cmon stop spamming people
I've got a r63 that's stored via .ini already ^^
Also any new updates Alex?
Posted via Mobile Device
Right now no one deserves updates but eh,
Catalog is near to completion with only gotta code items showing and keeping adding pages (sigh)
Oh and I forgot! - It's MySQL :)
http://img822.imageshack.us/img822/4100/catao.png
http://img31.imageshack.us/img31/2043/cata2.png
Why would you limit this emulator by using MySQL? I suggest before you get too into this using MySQL that you switch to SQL server. Reason being, there are a lot more features that you can play around with.
Just my opinion, but hey. Who am I? Clearly a nobody.
Very Nice Update :) You are very quick :P
alex, updates?
Seems to be a very nice and usefull emulator!
Keep up da fucking goodie work :D
I have spoken to Alex, and he is currently not working on it due to his personal life - he'll be continuing soon though.
It is no longer named 'aleedaCMS' - i've renamed it to KibboCMS, and development is coming along nicely. KibboCMS is coded to work with: aleedaEmulator, uberEmulator and Phoenix Emulator. I've been keeping the development 'hush-hush' as at the time I was going through a great deal of stress in real life. I will get my thread re-opened shortly, and all the details/information will be updated.
Also, did I mention that there is a new and improved look to KibboCMS?
Now, back to the topic of 'aleedaEmulator'.
Quackster, have you completed the catalogue yet?
I didn't know you left, I haven't seen any fucking images of this crappy KibboCMS, your such a troll so it's a good thing you left.
Anyway.. here is what is for aleedaCMS already
- - News is from Database
- - Login
- - Register
- - Shows users activity points and credits
- - SQL Injections patched.
Would you like to contribute? sure be a project member at: https://code.google.com/p/aleeda-cms/ (feel free to browse the code as well)
I have stripped down the database only for the cms :)
http://img52.imageshack.us/img52/6006/frontpageh.png
http://img703.imageshack.us/img703/2645/77488238.png
http://img812.imageshack.us/img812/7868/registray.png
There's a lot of room for improvement, the code is sloppy IMHO. It could also use a simple template system, etc. Things can be done better and different.
Ok it's a start. I would rather work on the Emulator then the CMS.
HoloCMS and PHPRetro don't have a template system ^_^
Also sorry guys, functions alone are not OOP ^^
---------- Post added at 09:14 AM ---------- Previous post was at 09:06 AM ----------
Anyway, is this sloppy code (In my opinion it isn't)? https://code.google.com/p/aleeda-cms.../functions.php
Example:
this:
should be(and still can be so much better, just an example):PHP Code:function loginStartSession($username, $password)
{
$user = mysql_real_escape_string($username);
$pass = sha1(mysql_real_escape_string($password));
$query = mysql_query("SELECT * FROM users WHERE username = '".$user."'") or die("");
$query = mysql_fetch_array($query);
if($pass != $query['password'] || $user != $query['username'])
{
echo "Wrong details, please <a href='index.php'>try again</a>";
}
elseif($pass == "")
{
echo "Wrong details, please <a href='index.php'>try again</a>.";
}
elseif($user == "")
{
echo "Wrong details, please <a href='index.php'>try again</a>.";
}
else
{
$_SESSION['name'] = $user;
header("Location: me");
}
return $query;
}
PHP Code:function secure($var)
{
return htmlspecialchars(addslahes(mysql_real_escape_string($var)));
}
function loginStartSession($username, $password)
{
$user = secure($username);
$pass = sha1(secure($password));
$query = mysql_query("SELECT * FROM users WHERE username = '".$user."'") or die("");
$query = mysql_fetch_array($query);
if($pass != "" && $user != "")
{
if($pass == $query['password'] && $user == $query['username'])
{
//Set $user variable to something like $user->name instead of a session.
}
else
{
$class->error = "Wrong details."
}
}
else
{
$class->error = "Please fill in all fields";
}
}