Thread: Admin Commands?

Results 1 to 11 of 11
  1. #1
    L̋̾̈́͑ͥͨͨ͞Ò̴ͫͪ͛͋̉͛Lͥ̔̓ ͨ͛ͬ ͩ̀͢
    Premium Member
    C453's Avatar
    Join Date
    Jul 2012
    Gender
    male
    Location
    /dev/null
    Posts
    574
    Reputation
    44
    Thanks
    2,535
    My Mood
    Aggressive

    Lightbulb Admin Commands?

    With the upcoming release of the private server, I wanted to know some of the commands that you can use. Here are some I found/know:
    /enter
    /spawn
    /kill
    /admin
    /stats
    /move
    /create

    Can anyone explain some of these commands, or explain how to use them (ex. the monster and object names for /spawn)

  2. #2
    eth0nic's Avatar
    Join Date
    Mar 2013
    Gender
    male
    Posts
    507
    Reputation
    10
    Thanks
    80
    how about opening the XML files and having a look?

  3. #3
    Threadstarter
    L̋̾̈́͑ͥͨͨ͞Ò̴ͫͪ͛͋̉͛Lͥ̔̓ ͨ͛ͬ ͩ̀͢
    Premium Member
    C453's Avatar
    Join Date
    Jul 2012
    Gender
    male
    Location
    /dev/null
    Posts
    574
    Reputation
    44
    Thanks
    2,535
    My Mood
    Aggressive
    What XML file is it on? Also where in the client Can I find it?

  4. #4
    Drowlys's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Location
    The Crawling Depths
    Posts
    196
    Reputation
    10
    Thanks
    2,675
    Can i have a look of the files ?
    Skype : cdgvulcain

  5. #5
    Drillick's Avatar
    Join Date
    Mar 2013
    Gender
    male
    Posts
    39
    Reputation
    37
    Thanks
    1
    My Mood
    Yeehaw
    Thers something everyone needs to get straight... YOU DONT GET ADMIN PERMISSIONS. You are still a player. Still working for pots. Still have to play. You're not just straight OP

    Edit: How did i get reputation...

  6. The Following User Says Thank You to Drillick For This Useful Post:

    Desssy (03-27-2013)

  7. #6
    Threadstarter
    L̋̾̈́͑ͥͨͨ͞Ò̴ͫͪ͛͋̉͛Lͥ̔̓ ͨ͛ͬ ͩ̀͢
    Premium Member
    C453's Avatar
    Join Date
    Jul 2012
    Gender
    male
    Location
    /dev/null
    Posts
    574
    Reputation
    44
    Thanks
    2,535
    My Mood
    Aggressive
    Then what do you do that is different than prod?

  8. #7
    cucuYeL's Avatar
    Join Date
    Jun 2012
    Gender
    female
    Location
    En la revista
    Posts
    1,412
    Reputation
    272
    Thanks
    2,693
    Quote Originally Posted by C453 View Post
    Then what do you do that is different than prod?
    Nothing. It's the same as Kabam, except for donating you get a chance at GM

  9. #8
    eth0nic's Avatar
    Join Date
    Mar 2013
    Gender
    male
    Posts
    507
    Reputation
    10
    Thanks
    80
    Well the XML files containing game objects obviously?

    Use SWFTools ... decompress the client ... then use a 10 line perl script to extract the XML files if you have no other tool at hand?

    Code:
    #!/usr/bin/perl -w
    use strict;
    use File::Slurp;
    
    my $text = read_file('AssembleeGameClient1364329899_uncompressed.swf');
    $text =~ s/\n\n\n</XOXO</gi;
    $text =~ s/[\n\r]//gi;
    $text =~ s/>[ \s]+</></gi;
    
    my %tags=();
    
    while($text=~/XOXO<([[:print:]]{1,50}?)\>/ig){
     my $tag=$1;
     next if $tag =~ /^\//;
     $tags{$tag}++;
    }
    
    foreach my $tag (sort {$tags{$a} <=> $tags{$b}} keys %tags){
     print $tag . ' ' . $tags{$tag}. 'x' . "\n";
    }
    
    foreach my $tag (keys %tags){
     print 'processing ' . $tag . ' ...' . "\n";
     my $i=0;
     while($text=~/(<$tag>.+?<\/$tag>)/ig){
     	my $xml=$1;
     	#$xml=~s/type="(0x.+?)"/'type="' . oct($1) .'"'/egi;
     	$xml=~s/<!--[^\-]+-->//gi; # comments 
     	$xml=~s/(<\/[^\>]+?>)[^\>]+</$1</gi; # malformed
    
      open(OUT,'>' . './data/' . $tag . '_' . $i . '.xml') or die $! . "\n";
      print OUT $xml . "\n";
      close(OUT) or warn $! . "\n";
      $i++;
     }
    }
    Quote Originally Posted by C453 View Post
    What XML file is it on? Also where in the client Can I find it?

  10. #9
    Desssy's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Posts
    22
    Reputation
    10
    Thanks
    1
    My Mood
    Bored
    Quote Originally Posted by TheBossMan99 View Post
    Nothing. It's the same as Kabam, except for donating you get a chance at GM
    That's not true. Drop rates are modified. GM's will supposedly be more invlolved. As for what you can do, there is a second server. It's a "cheat" server where you can spawn things. Watch the trailers they put out. Really exciting stuff.

  11. #10
    DatCoder's Avatar
    Join Date
    Feb 2013
    Gender
    male
    Posts
    265
    Reputation
    10
    Thanks
    178
    My Mood
    Inspired
    @eth0nic Does swftools miss something? I use swfdump (for links and filenames) + swfextract (to extract binaries and xmls) to get the job done but I haven't noticed yet..

  12. #11
    Xiolest's Avatar
    Join Date
    Jul 2012
    Gender
    male
    Location
    Searching...
    Posts
    4,125
    Reputation
    330
    Thanks
    652
    My Mood
    Twisted
    Kabaam is juts a PTW=Pay to Win. All they care about is money.

Similar Threads

  1. [Research] Admin commands
    By Qix in forum Continent of the Ninth (C9) Hacks / Bots
    Replies: 4
    Last Post: 08-14-2012, 04:51 PM
  2. Admins
    By scuartas in forum General
    Replies: 31
    Last Post: 07-11-2010, 07:15 AM
  3. phpBB <==2.0.12 - [Admin Rights]!
    By eXe in forum Exploits
    Replies: 14
    Last Post: 08-15-2008, 05:23 PM
  4. Demon of some commands
    By HolyFate in forum Gunz Hacks
    Replies: 12
    Last Post: 02-21-2006, 01:43 PM
  5. Joining [MPGH] Clan, Buying Admin etc.
    By Dmx in forum CounterStrike (CS) 1.6 Hacks / Counter Strike: Source (CSS) Hacks
    Replies: 11
    Last Post: 01-03-2006, 11:52 AM