Admin commands

Results 1 to 7 of 7
  1. #1
    Developer Tenzou is offline
    MemberRank
    Jun 2008 Join Date
    HomeLocation
    436Posts

    Admin commands

    hello , im new here in Gunz Section , previously i was developer for Ran ONline section, i just learned the game so i want to make one , so i want to ask for any commands/cheat , that will give me advantage in game , i mean anything i can do that my normal players cant do , i hope you understand ,, ^__^ very dumb question sorry everybodu


  2. #2
    Balance Elian is offline
    MemberRank
    Sep 2009 Join Date
    StarLocation
    1,768Posts

    Re: Admin cheats

    If you are talking about "hacks" GL finding them here.

    If you are making your own server and you want admin commands give yourself the uGrade 255.

    Then search google for all the gunz commands and look at the admin ones.

  3. #3
    Mad son. Evilness is offline
    MemberRank
    Oct 2010 Join Date
    207Posts

    Re: Admin cheats

    Code:
    General Commands
    /help	
    Help you show the commands.
    /whisper <character name> <what to say> (or /w)	Whisper player In-Game, you can type /r (then press space) to reply to the whisper of a player.
    /qj (or /go)	Quick Join.
    /kick	Type /kick, then the list of player will be shown, choose 1 player to kick in the room.
    /vote kick <anything you want>	Type /vote kick <anything you want / player> to kick.
    /taunt	Your character will taunt (Supported in games only).
    /salute	Your character will salute (Supported in games only).
    /wave	Your character will wave (Supported in games only).
    /laugh	Your character will laugh (Supported in games only).
    /cry	 Your character will cry (Supported in games only).
    /dance	 Your character will dance (Supported in games only).
    /suicide  Your character will suicide (Supported in games only).
    Code:
    Clan Commands
    
    Command	 Output
    /clan open <Clan Name> <Member #1> <Member #2> <Member #3> <Member #4>
    Start a new clan with promoter.
    /clan close <Clan Name>	 Close the clan currently open. Only the Clan Master can use this command.
    /clan invite <character name>	 Accept the designated character as a new member. Only the Clan Master or the clan operator can use this command.
    /clan leave	 Voluntarily withdraw from the clan. However, the clan master him(her)self cannot withdraw.
    /clan dismiss <character name>	 Force the designated character to secede from the clan. Only the Clan Master or the clan operator can use this command.
    /clan promote <character name> <authority>	 Change the authority of the selected character within the clan. Indicate "admin" or "member" in <authority>. (Ex: /clan promote David admin)
    WARNING: "admin" is different with Clan Master.
    /clan msg <message>	 Enter a dialogue in the clan chatting channel. You can clan chat easily by attaching # in front of a dialogue when not using this command.
    Code:
    Admin commands
    Note: Commands may differ from runnable to runnable.
    Command
                       Output
    /admin_halt	 Stops the server
    /jjang <name>	 Give the character an Event Winner sign
    /admin_ban <name>	 Disconnects the player from the server
    /admin_wall	 Makes a server announcement.
    /removejjang <name>	 Takes the jjang away from the character.
    /changemaster	 Changes the master for the game to yourself. (Only works in gameroom)
    /changepassword (pass)	 Changes the password of the game. (Only works in gameroom)
    /hide	 Hides from all players. Allows for "watching" functionality (similar to being on a player's team but being dead)
    /admin_switch_laddergame <1,0>	 Enable or disable clan matches.
    Code:
    Chat Commands
    The following commands are used for chat rooms in GunZ
    Command	 Output
    @<message>
    Sends a message to the chat room you are currently participating in.
    /chatmake <room name>	 Creates a chat room with the given name (if available).
    /chatleave <room name>	 Leaves the chat room you are participating in.
    /chatinvite <character name>	 Invites the selected player into the chat room you are currently participating in.
    /chataccept	 Accepts and invitation to a chat room.
    /chatselect <room name>	 Selects a chat room to participate in (you must already be in the chat room). Used for chatting in multiple rooms.
    Code:
    Color Commandzzzzz
    The following commands are put in front of your messages to make them colorful. You must put ^#(then message here). # can be any number 0-9.
    Command	 Output
    ^0	 Dark Gray
    ^1	 Red
    ^2	 Green
    ^3	 Blue
    ^4	 Yellow
    ^5	 Dark Red
    ^6	 Dark Green
    ^7	 Dark Blue
    ^8	 Dark Yellow
    ^9	 White

  4. #4
    igunz.net Dawson is offline
    LegendRank
    Feb 2010 Join Date
    ::1 (Canada BC)Location
    2,581Posts

    Re: Admin cheats

    Code:
    		if(_stricmp(command, "/spawn") == 0){
    			if(ZGetMyInfo()->GetUGradeID() == 255){
    				ZPostRequestSpawn(ZGetGameClient()->GetMe(), ZGetMyCharacter()->GetPosition(), ZGetMyCharacter()->GetDirection());
    				ZGetCombatInterface()->SetObserverMode(false);
    				return true;
    }
    		if(_stricmp(command, "/god") == 0){
    			if(ZGetMyInfo()->GetUGradeID() == 255){
    				ZGetMyCharacter()->GetModuleHPAP()->GetAP() = ZGetMyCharacter()->GetModuleHPAP()->GetMaxAP();
    				ZGetMyCharacter()->GetModuleHPAP()->GetHP() = ZGetMyCharacter()->GetModuleHPAP()->GetMaxHP();
    				GM_GODMODE = !GM_GODMODE;
    				ZChatOutput(GM_GODMODE == true ? "God mode enabled." : "God mode disabled.", OUTPUT_COLOUR);
    				return true;
    }
    ////////////////////
    
    	for(;;){
    		if(ZGetMyCharacter() && GM_TELEPORT == true){
    			if(GetAsyncKeyState(VK_NUMPAD9) & 0x8000){
    				ZGetMyCharacter()->GetPosition().z += TELEPORT_DISTANCE;
    				ZGetMyCharacter()->GetModuleMovable()->InitStatus();

  5. #5
    Developer Tenzou is offline
    MemberRank
    Jun 2008 Join Date
    HomeLocation
    436Posts

    Re: Admin commands

    thank you everybody for your feedbacks , it really helps me...

  6. #6
    Fuck Army. sahar042 is offline
    MemberRank
    Jul 2009 Join Date
    833Posts

    Re: Admin cheats

    Quote Originally Posted by Dawson View Post
    Code:
    		if(_stricmp(command, "/spawn") == 0){
    			if(ZGetMyInfo()->GetUGradeID() == 255){
    				ZPostRequestSpawn(ZGetGameClient()->GetMe(), ZGetMyCharacter()->GetPosition(), ZGetMyCharacter()->GetDirection());
    				ZGetCombatInterface()->SetObserverMode(false);
    				return true;
    }
    		if(_stricmp(command, "/god") == 0){
    			if(ZGetMyInfo()->GetUGradeID() == 255){
    				ZGetMyCharacter()->GetModuleHPAP()->GetAP() = ZGetMyCharacter()->GetModuleHPAP()->GetMaxAP();
    				ZGetMyCharacter()->GetModuleHPAP()->GetHP() = ZGetMyCharacter()->GetModuleHPAP()->GetMaxHP();
    				GM_GODMODE = !GM_GODMODE;
    				ZChatOutput(GM_GODMODE == true ? "God mode enabled." : "God mode disabled.", OUTPUT_COLOUR);
    				return true;
    }
    ////////////////////
    
    	for(;;){
    		if(ZGetMyCharacter() && GM_TELEPORT == true){
    			if(GetAsyncKeyState(VK_NUMPAD9) & 0x8000){
    				ZGetMyCharacter()->GetPosition().z += TELEPORT_DISTANCE;
    				ZGetMyCharacter()->GetModuleMovable()->InitStatus();
    omg thanks :D...

  7. #7
    Hi, I'm Omar! Vusion is offline
    MemberRank
    Jan 2011 Join Date
    HereLocation
    1,658Posts

    Re: Admin commands

    Something old but might help you.

    http://forum.ragezone.com/f496/wip-l...resent-715792/



Advertisement