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!

"Instagram" for Arcturus Emulator.

Junior Spellweaver
Joined
Feb 6, 2013
Messages
196
Reaction score
25
Hi,

I just wanted to release something small you can use for you CMS when if you are using Arcturus Emulator.

When you take a picture and click "publish" like this
9ebe9ad63f2981a971b364db9efd6988 - "Instagram" for Arcturus Emulator. - RaGEZONE Forums


The image will be stored in the table "camera_web".
you can use this query on any page in your CMS to get a nice "instagram".
PHP:
<?php                                        $query = mysql_query('Select `users`.`username`, `camera_web`.`url` from `camera_web` left join `users` on `users`.`id` = `camera_web`.`user_id` order by `camera_web`.`id` desc limit 50');                                        while($row = mysql_fetch_array($query)){                                            echo '<b>'.$row['username'].'</b><br><img src="'.$row['url'].'" valign="middle" /><b><hr></b>  <b>'.$row['user_id'].'</b>  <i>'.$row['description'].'</i><br />';                                        }                                    ?>
I didn't want to publish the whole .php file because it won't fit your skin.
However, this is the result :)
8e5c7b8495415716ee94f4b91d43b59b - "Instagram" for Arcturus Emulator. - RaGEZONE Forums


You get the name and the image, pretty simple but still pretty nice.
 

Attachments

You must be registered for see attachments list
git bisect -m
Loyal Member
Joined
Sep 2, 2011
Messages
2,171
Reaction score
916
Liked it! Actually Chocolatey also integrates the Camera with Arcturus.

But this script it's like funny. Maybe on next release improve it design :)
 
Joined
Apr 30, 2007
Messages
2,339
Reaction score
1,547
I coded a gallery system when I was using Comet that let users comment and like specific pictures, as well as use a specific picture as their profile picture on the embedded social networking system in the CMS.

This could be expanded so much more!
 
Junior Spellweaver
Joined
Feb 6, 2013
Messages
196
Reaction score
25
I coded a gallery system when I was using Comet that let users comment and like specific pictures, as well as use a specific picture as their profile picture on the embedded social networking system in the CMS.

This could be expanded so much more!
Yes I will make it possible to comment the picture and I'll update with the new script soon.
 

kbj

Newbie Spellweaver
Joined
May 9, 2009
Messages
50
Reaction score
6
Still using mysql? Try to use mysqli or PDO instead of the deprecated mysql :#
But I like it, I think this will help some hotels. ;)
 
Junior Spellweaver
Joined
Feb 6, 2013
Messages
196
Reaction score
25
Still using mysql? Try to use mysqli or PDO instead of the deprecated mysql :#
But I like it, I think this will help some hotels. ;)

Good point, stupid me. I'll switch to mysqli.
 
Junior Spellweaver
Joined
Aug 25, 2016
Messages
100
Reaction score
15
His CMS is coded using mysql_ - it's a hassle to redo a whole CMS, definitely if you've not been coding for very long.
No one told him to re-do his whole CMS. You can still code a page in mysqli_ if you're using mysql on your CMS.
Just a few adjustments.

ONT: It does not look like "Instagram" make a comment section and it will be great!
 
Joined
Apr 30, 2007
Messages
2,339
Reaction score
1,547
No one told him to re-do his whole CMS. You can still code a page in mysqli_ if you're using mysql on your CMS.
Just a few adjustments.

ONT: It does not look like "Instagram" make a comment section and it will be great!

A few adjustments? Like a whole new DB connection where one is already established? How about no.
 
Junior Spellweaver
Joined
Feb 6, 2013
Messages
196
Reaction score
25
Yes, it is just a script. However I am working on comments and likes at the moment, it would be cool if you could also have a description on your image, of how to make a descripiton? it needs to be trough the CMS I guess.
 
Newbie Spellweaver
Joined
Dec 15, 2016
Messages
24
Reaction score
3
Very great this can be improved many. thanks :eek:tt:
 
Junior Spellweaver
Joined
Feb 6, 2013
Messages
196
Reaction score
25
For those interested in what this could be developed into, here's something I did with the camera system:

cfkHgxH - "Instagram" for Arcturus Emulator. - RaGEZONE Forums

Looks real cool, but the box is honestly too big.
 

Attachments

You must be registered for see attachments list
Experienced Elementalist
Joined
Nov 11, 2015
Messages
238
Reaction score
89
Highly doubt it will be used often if it's on the actual CMS, just like any other CMS feature.
However the idea is fun, and could be used with something like websockets. I'll finish my plugin soon =p
 
Back
Top