[Development]Command Prompt(Web-Server)

Results 1 to 11 of 11
  1. #1
    Infraction Banned BGxApixen is offline
    MemberRank
    May 2009 Join Date
    939Posts

    [Development]Command Prompt(Web-Server)

    This is a new development by Apixen & Semih.



    Hey guys.
    Since Me and Semih have been developing this, I might as well post a topic about it.


    The New Command Prompt For FlyFF Servers


    Features
    -Ban Accounts
    -Get GMs
    -Make GM
    -Add to Authority(For My Panels)
    -De-GM a GM/Admin
    -Commands Window(Shows all commands in a pop-up window).
    -Turn Lottery Status Offline or Online(My Panel too).
    -delete a character

    -More Features to come

    Release?
    Most likely, YES, I will release it, but some features will be deleted.


    Credits
    -------
    -Apixen
    -Semih

    This is all PHP based.
    Last edited by BGxApixen; 31-07-10 at 04:15 AM.


  2. #2
    Infraction Magnet KING5 is offline
    MemberRank
    Oct 2008 Join Date
    Behind You !Location
    484Posts

    Re: [Development]Command Prompt(Web-Server)

    Nice smf looks good LMFAO.

  3. #3
    Now you can tag me! Detox is offline
    MemberRank
    May 2009 Join Date
    NorwayLocation
    1,822Posts

    Re: [Development]Command Prompt(Web-Server)

    Good luck on the project Apixen & Semih :)

    Apixen, You`re making Blaze Games proud of your php skills. x3
    Last edited by Detox; 31-07-10 at 11:34 AM.

  4. #4
    Valued Member R3fl3x is offline
    MemberRank
    Sep 2008 Join Date
    116Posts

    Re: [Development]Command Prompt(Web-Server)

    Rofl, why do you use a command line if you could use a HTML GUI which would be smarter. All the functions you listed, will take around 1 hour to get into a working script with a GUI.
    So, why taking the command line, if you could do it with a GUI in the same time?

  5. #5
    ϠϪϡ 0x61 is offline
    MemberRank
    Dec 2009 Join Date
    304Posts

    Re: [Development]Command Prompt(Web-Server)

    Quote Originally Posted by R3fl3x View Post
    Rofl, why do you use a command line if you could use a HTML GUI which would be smarter. All the functions you listed, will take around 1 hour to get into a working script with a GUI.
    So, why taking the command line, if you could do it with a GUI in the same time?
    Hm, that can be done too ofcours. However, everything here is being controlled by a single textbox. Don't see this as a panel or something, it's an addition to a panel. Instead of going around between pages; ban.php, makegm.php, etc etc. You could do everything here with a simple string! Not to remind that, making the base script took only around 15 minutes with a few commands built in.

  6. #6
    Account Upgraded | Title Enabled! Nick1337 is offline
    MemberRank
    May 2009 Join Date
    357Posts

    Re: [Development]Command Prompt(Web-Server)

    Good luck guys :)

  7. #7
    Not working on UnitedFlyf Mootie is offline
    MemberRank
    Apr 2009 Join Date
    1,589Posts

    Re: [Development]Command Prompt(Web-Server)

    Quote Originally Posted by Semih View Post
    Hm, that can be done too ofcours. However, everything here is being controlled by a single textbox. Don't see this as a panel or something, it's an addition to a panel. Instead of going around between pages; ban.php, makegm.php, etc etc. You could do everything here with a simple string! Not to remind that, making the base script took only around 15 minutes with a few commands built in.
    So its SLIGHTLY(if that) more useful than a regular GUI...A proper GUI could also be used to view/manipulate logs and character details more efficiently. Also you dont need to make individual script files for each function ._., you can use one file with multiple $_GET(or $_POST) variables. And on top of that, to make it even faster, you can add ajax. Even further with memcache. GUI will always be faster for administrating a large range of data types(accounts, logs, item sending, general web functions). I'd just like to see something useful(+unique) being developed x-x

  8. #8
    Infraction Banned BGxApixen is offline
    MemberRank
    May 2009 Join Date
    939Posts

    Re: [Development]Command Prompt(Web-Server)

    One single text box is controlling this database, as Semih said. Semih made the base of this panel, while I work with the commands and get them to work. I've added several functions, as of now, i have
    -Ban
    -De-GM
    -Make GM
    -Add to Authority(MY panel).

    The script will search for the FIRST word of each string, if its one of the defined, read the 2nd word and define that, and so on if needed. If the command is invalid, tell you with text, and you may read a pop-up reading all the commands which will be stated.

  9. #9
    ϠϪϡ 0x61 is offline
    MemberRank
    Dec 2009 Join Date
    304Posts

    Re: [Development]Command Prompt(Web-Server)

    Quote Originally Posted by mootie View Post
    So its SLIGHTLY(if that) more useful than a regular GUI...A proper GUI could also be used to view/manipulate logs and character details more efficiently. Also you dont need to make individual script files for each function ._., you can use one file with multiple $_GET(or $_POST) variables. And on top of that, to make it even faster, you can add ajax. Even further with memcache. GUI will always be faster for administrating a large range of data types(accounts, logs, item sending, general web functions). I'd just like to see something useful(+unique) being developed x-x
    Yea that could be correct, the reason why i started was to learn more about php, since i've recently started learning php. Not to remind that. I never you NEEDED different pages, i was just pointing out that it's possible without. A simple switch in 1 file would do the same as for the others indeed. But, as i pointed out before, it's to learn more about php :p
    Unique? Why don't you ever come with something like that nub ;d

  10. #10
    Infraction Banned BGxApixen is offline
    MemberRank
    May 2009 Join Date
    939Posts

    Re: [Development]Command Prompt(Web-Server)

    New Features:
    -deletechar [Character]
    -getadmins [Authority]
    -getbans (Thanks alexsh, for that procedure)
    -firegm [Character]
    Last edited by BGxApixen; 31-07-10 at 09:10 PM.

  11. #11
    Alpha Member Masius is offline
    MemberRank
    Dec 2007 Join Date
    1,580Posts

    Re: [Development]Command Prompt(Web-Server)

    Quote Originally Posted by mootie View Post
    So its SLIGHTLY(if that) more useful than a regular GUI...A proper GUI could also be used to view/manipulate logs and character details more efficiently. Also you dont need to make individual script files for each function ._., you can use one file with multiple $_GET(or $_POST) variables. And on top of that, to make it even faster, you can add ajax. Even further with memcache. GUI will always be faster for administrating a large range of data types(accounts, logs, item sending, general web functions). I'd just like to see something useful(+unique) being developed x-x
    We share the same opinion bro.
    As for Semih.. bro, I like how far you're coming in PHP



Advertisement