IndigoEMU - Java - r63 - MySQL

Page 3 of 7 FirstFirst 1234567 LastLast
Results 31 to 45 of 103
  1. #31
    The one and only! Hejula is offline
    MemberRank
    Nov 2008 Join Date
    4,128Posts

    Re: IndigoEMU [Java, MySQL, R63A+]

    Quote Originally Posted by Quackster View Post
    Sure thing. ;D
    The cms will probably have a drop-down box of commands anyway in the housekeeping, or something similar. :D
    Yours will, mine wont without the right information ;)

  2. #32
    "(still lacks brains)" NoBrain is offline
    MemberRank
    Sep 2011 Join Date
    United KingdomLocation
    2,658Posts

    Re: IndigoEMU [Java, MySQL, R63A+]

    Quote Originally Posted by Hejula View Post
    Yours will, mine wont without the right information ;)
    IndigoEMU is getting 2 CMS'? I AM REALLY CONFUSED...

  3. #33
    prjRev.com Kryptos is offline
    MemberRank
    Feb 2010 Join Date
    Planet EarthLocation
    579Posts

    Re: IndigoEMU [Java, MySQL, R63A+]

    Quote Originally Posted by ησвяαιη View Post
    IndigoEMU is getting 2 CMS'? I AM REALLY CONFUSED...
    Actually, three if you count me adding the database structure into a PHP file in RevCMS 3.0 and VOILA.

  4. #34
    The one and only! Hejula is offline
    MemberRank
    Nov 2008 Join Date
    4,128Posts

    Re: IndigoEMU [Java, MySQL, R63A+]

    Quote Originally Posted by ησвяαιη View Post
    IndigoEMU is getting 2 CMS'? I AM REALLY CONFUSED...
    I never stopped on mine, Alex took mine off the official thing because he thought I would shell it. P.S. I'll have homes completed soon

  5. #35
    "(still lacks brains)" NoBrain is offline
    MemberRank
    Sep 2011 Join Date
    United KingdomLocation
    2,658Posts

    Re: IndigoEMU [Java, MySQL, R63A+]

    I was never informed... Looks like I have to get cracking.

  6. #36
    Developer Quackster is online now
    DeveloperRank
    Dec 2010 Join Date
    AustraliaLocation
    3,474Posts

    Re: IndigoEMU [Java, MySQL, R63A+]

    Quote Originally Posted by Hejula View Post
    I never stopped on mine, Alex took mine off the official thing because he thought I would shell it. P.S. I'll have homes completed soon
    Just so you know, yours won't be supported by me. As there is already an official one.

    Which means if people ask for help setting yours up. I'll say to use Ashley's instead. :)

  7. #37
    The one and only! Hejula is offline
    MemberRank
    Nov 2008 Join Date
    4,128Posts

    Re: IndigoEMU [Java, MySQL, R63A+]

    Quote Originally Posted by Quackster View Post
    Just so you know, yours won't be supported by me. As there is already an official one.

    Which means if people ask for help setting yours up. I'll say to use Ashley's instead. :)
    Why would you support any? You know like not much about PHP so you couldn't offer good support regardless. I will support my own work as I know how it works.

  8. #38
    Developer Quackster is online now
    DeveloperRank
    Dec 2010 Join Date
    AustraliaLocation
    3,474Posts

    Re: IndigoEMU [Java, MySQL, R63A+]

    Quote Originally Posted by Hejula View Post
    Why would you support any? You know like not much about PHP so you couldn't offer good support regardless. I will support my own work as I know how it works.
    That is, recommending a good cms to use etc ;D

    --

    Also anyone have a good packetlogger?

    --

    Any more off topic bickering about the cms, will be reported.

  9. #39
    Developer Quackster is online now
    DeveloperRank
    Dec 2010 Join Date
    AustraliaLocation
    3,474Posts

    Re: IndigoEMU [Open Source, Java, MySQL, R63+]

    Finished applying room decorations.. I need to find the c_images for the wallpaper though..


  10. #40
    Learning C# - Developer wy479 is offline
    MemberRank
    Nov 2010 Join Date
    :O You PERVERT!Location
    1,132Posts

    Re: IndigoEMU [R63+, Open Source, Java, MySQL]

    I meant like if there is a bug with something it gets sent to the owner and you to fix :)

  11. #41
    Developer Quackster is online now
    DeveloperRank
    Dec 2010 Join Date
    AustraliaLocation
    3,474Posts

    Re: IndigoEMU [R63+, Open Source, Java, MySQL]

    Quote Originally Posted by wy479 View Post
    I meant like if there is a bug with something it gets sent to the owner and you to fix :)
    There won't be any bugs.

  12. #42
    Custom Title Enabled James is online now
    LegendRank
    Jan 2007 Join Date
    DenverLocation
    2,288Posts

    Re: IndigoEMU [R63+, Open Source, Java, MySQL]

    This projects looking good Alex, wish I had your type of motivation to actually stick to a project!
    Posted via Mobile Device

  13. #43
    swagggggg Livar is offline
    MemberRank
    Oct 2008 Join Date
    United KingdomLocation
    2,272Posts

    Re: IndigoEMU [Java, MySQL, R63A+]

    Quote Originally Posted by Quackster View Post
    Updates!!!

    - Product buying





    - Inventory



    - MUS

    Okay, so the mus. Is I believe, very secure.. why is it secure?

    - The port is hidden
    - When you send a packet to the mus socket, you must have login credentials, example;

    Code:
    ?username=Quack&password=testing1&type=hotelalert&data=:D
    I wrote a basic script for it to connect as well..
    So far, you can only send hotel alerts via website ;D

    PHP Code:
    <?php

        $host 
    "127.0.0.1"
        
    $port 3467;
        
    $stringofdata "login ".$_GET['username']." ".$_GET['password']." type ".$_GET['type']." ".$_GET['data'];
        
        
    $socket socket_create(AF_INETSOCK_STREAMSOL_TCP) or die("Could not create socket\n");

        
    socket_connect($socket$host$port) or die("Could not connect to server on port: ".$port);
         
        
    $len strlen($stringofdata); 
         
        
    socket_send($socket$stringofdata$len0); 
         
        
    socket_close($socket);  

    ?>
    Alex, please remove that ridicilous 'you have bought' thing, so for e.g I bought 100 thrones, it'll show it 100 times?

  14. #44
    Developer Quackster is online now
    DeveloperRank
    Dec 2010 Join Date
    AustraliaLocation
    3,474Posts

    Re: IndigoEMU [Java, MySQL, R63A+]

    Quote Originally Posted by PowahAlert View Post
    Alex, please remove that ridicilous 'you have bought' thing, so for e.g I bought 100 thrones, it'll show it 100 times?
    Oh, no worries. I'll code something to stop that from happening. :D

    Quote Originally Posted by James View Post
    This projects looking good Alex, wish I had your type of motivation to actually stick to a project!
    Posted via Mobile Device
    Haha thanks (:

    --

    @PowahAlert - we'll make it, maximum three? Then it stops showing it.

  15. #45
    swagggggg Livar is offline
    MemberRank
    Oct 2008 Join Date
    United KingdomLocation
    2,272Posts

    Re: IndigoEMU [Java, MySQL, R63A+]

    Quote Originally Posted by Quackster View Post
    Oh, no worries. I'll code something to stop that from happening. :D



    Haha thanks (:

    --

    @PowahAlert - we'll make it, maximum three? Then it stops showing it.
    Three will be fine.



Page 3 of 7 FirstFirst 1234567 LastLast

Advertisement