Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Conquer Online 2
You last visited: Today at 15:31

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



What are PM commands?

Discussion on What are PM commands? within the Conquer Online 2 forum part of the MMORPGs category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Apr 2018
Posts: 16
Received Thanks: 5
What are PM commands?

Hi,

I never really played conquer much but due to the amount of hacking source code out there its a nice little game to learn on.

I haven't done much yet other than isolate what I believe to be the movement function and I've successfully removed the multi-client restriction. I also have ptrs to the in-game coordinates which I can read from a small script I wrote.

I'm currently looking to unlock the FPS.

With that being said I have noticed in old hacks they always include 'PM commands' what are these? In comparison to say 'GM commands' which speaks for itself.
clerythecleric is offline  
Old 04/21/2019, 19:21   #2
 
nTL3fTy's Avatar
 
elite*gold: 0
Join Date: Jun 2005
Posts: 692
Received Thanks: 353
In terms of Conquer Online, a PM has 'more power' than a GM. You can debate over what the abbreviations mean, but TQ implemented the two staff positions as GM and PM. What makes them 'PM commands' is the stipulation that they are executed by a character whose name contains '[PM]' rather than '[GM]' which implies a higher level of power. Enabling these in the client is typically done by the removal of the check for '[GM]' or '[PM]'. The differences between a GM and a PM are more important on the server-side rather than the client-side.

Current list of client-side commands, executable by GMs and PMs alike:
Code:
/scrshot
/break
/delitembytype
/reloadfile
/usemagic
/enablerange
/color
/look
/hair
/SetFrame
/mount
/rolescale
/SetRWeaponScale
/SetLWeaponScale
/test
/test1
/SetBloomColor
/SetBloomFrameAmount
/AddEarthQuake
/ver
/scale
/full
/data
/addScreenEffect
/delScreenEffect
/addeffect
/addbodyeffect
/addrotateeffect
/addaction
/actionIndex
/GetRoleViewVar
/pose
/BruceLeeThree
/GetFrameAmount
/SetDebugFrame
/SetDebugInterval
/ActionDebugInfo
/ReloadDummyMovieIni
/LAAdd
/LAStop
/pmnew
/ReloadMsgBoxIni
/AddMsg
/AddCenterMsg
/msgbox
/say
/mapcolor
/ReLoadStrRes
/ReLoadCnRes
/ReLoadActionLee3DEffect
/HitFly
/APE
/DPE
/transform
/debuglua
/reloadlua
/c_achshow
/3deffect
/3dRotateEffect
/PingRange
/SendPingTestResult
/ShowMePerformance
/ShowMeGameVersion
/EnableMapLayer
/EnablePuzzleGrid
/ChgScr
/Mute
/Weather
/ClearInvalidGui
/SetResetMode
/OpenWindow
/CloseWindow
/EnableGMMode
/show client version
/TrimWorkingSet
/TrimWorkingSetImm
/ResetGui
/WriteNewGUI
/EnableSimplifyOnMapScale
/PrintTrainningRange
/EnableArabicLike
/DisableArabicLike
These commands can change between versions (there's been over 15 years of versions) and are quite different than the last time I personally looked at them.
nTL3fTy is offline  
Thanks
2 Users
Old 04/21/2019, 19:46   #3
 
elite*gold: 0
Join Date: Apr 2018
Posts: 16
Received Thanks: 5
Wow that is incredible. You can just unlock GM commands in the client? I know its an old game but what were they thinking when they made this.

Thank you for the info, very useful. I'll add this on my list of things to play with/test out later on. Any tips for finding the checks, where they reside or what/how many parameters (or void) etc..

Thanks
clerythecleric is offline  
Old 04/21/2019, 20:01   #4
 
nTL3fTy's Avatar
 
elite*gold: 0
Join Date: Jun 2005
Posts: 692
Received Thanks: 353
Quote:
Originally Posted by clerythecleric View Post
Wow that is incredible. You can just unlock GM commands in the client? I know its an old game but what were they thinking when they made this.
None of them do anything of much consequence because of the game's authoritative server design. Although there once was a client command that essentially allowed the client to jump faster leading to a built-in speedhack (assuming the commands were enabled). However that command has since been removed.

Quote:
Originally Posted by clerythecleric View Post
Thank you for the info, very useful. I'll add this on my list of things to play with/test out later on. Any tips for finding the checks, where they reside or what/how many parameters (or void) etc..
Some have parameters, some do not. Simply looking for the command text should lead you to a stricmp and any subsequent sscanf which would usually contain the format for the command.

SetFrame for example has a sscanf("%s %d"), %s being "SetFrame" and %d being the parameter, which in this case would set the desired FPS in the client.
nTL3fTy is offline  
Old 04/21/2019, 21:25   #5
 
elite*gold: 0
Join Date: Apr 2018
Posts: 16
Received Thanks: 5
Ah ok thank you.
I think i'm starting to get the hang of this now
clerythecleric is offline  
Old 05/25/2019, 15:02   #6
 
KumadasNoni's Avatar
 
elite*gold: 0
Join Date: Feb 2018
Posts: 3
Received Thanks: 1
Quote:
Originally Posted by nTL3fTy View Post
In terms of Conquer Online, a PM has 'more power' than a GM. You can debate over what the abbreviations mean, but TQ implemented the two staff positions as GM and PM. What makes them 'PM commands' is the stipulation that they are executed by a character whose name contains '[PM]' rather than '[GM]' which implies a higher level of power. Enabling these in the client is typically done by the removal of the check for '[GM]' or '[PM]'. The differences between a GM and a PM are more important on the server-side rather than the client-side.

Current list of client-side commands, executable by GMs and PMs alike:
Code:
/scrshot
/break
/delitembytype
/reloadfile
/usemagic
/enablerange
/color
/look
/hair
/SetFrame
/mount
/rolescale
/SetRWeaponScale
/SetLWeaponScale
/test
/test1
/SetBloomColor
/SetBloomFrameAmount
/AddEarthQuake
/ver
/scale
/full
/data
/addScreenEffect
/delScreenEffect
/addeffect
/addbodyeffect
/addrotateeffect
/addaction
/actionIndex
/GetRoleViewVar
/pose
/BruceLeeThree
/GetFrameAmount
/SetDebugFrame
/SetDebugInterval
/ActionDebugInfo
/ReloadDummyMovieIni
/LAAdd
/LAStop
/pmnew
/ReloadMsgBoxIni
/AddMsg
/AddCenterMsg
/msgbox
/say
/mapcolor
/ReLoadStrRes
/ReLoadCnRes
/ReLoadActionLee3DEffect
/HitFly
/APE
/DPE
/transform
/debuglua
/reloadlua
/c_achshow
/3deffect
/3dRotateEffect
/PingRange
/SendPingTestResult
/ShowMePerformance
/ShowMeGameVersion
/EnableMapLayer
/EnablePuzzleGrid
/ChgScr
/Mute
/Weather
/ClearInvalidGui
/SetResetMode
/OpenWindow
/CloseWindow
/EnableGMMode
/show client version
/TrimWorkingSet
/TrimWorkingSetImm
/ResetGui
/WriteNewGUI
/EnableSimplifyOnMapScale
/PrintTrainningRange
/EnableArabicLike
/DisableArabicLike
These commands can change between versions (there's been over 15 years of versions) and are quite different than the last time I personally looked at them.
what's the use of this /EnableGMMode?
KumadasNoni is offline  
Old 05/27/2019, 20:44   #7
 
Super Aids's Avatar
 
elite*gold: 0
Join Date: Dec 2012
Posts: 1,761
Received Thanks: 946
Quote:
Originally Posted by KumadasNoni View Post
what's the use of this /EnableGMMode?
It allows you to send CMD commands directly to TQ's server.
Super Aids is offline  
Thanks
1 User
Old 06/06/2019, 15:39   #8
 
Super Aids's Avatar
 
elite*gold: 0
Join Date: Dec 2012
Posts: 1,761
Received Thanks: 946
Quote:
Originally Posted by ahmednabilessa View Post
HOW i make multi-Client without Dc ?
Open the client in notepad.exe

Search for "dc"

Delete all entries that matches that.

Save the file.

And that's it.
Super Aids is offline  
Thanks
2 Users
Old 06/13/2019, 05:05   #9
 
elite*gold: 0
Join Date: Dec 2007
Posts: 49
Received Thanks: 8
Quote:
Originally Posted by Super Aids View Post
Open the client in notepad.exe

Search for "dc"

Delete all entries that matches that.

Save the file.

And that's it.
when i do that my client cant open and there is DC and dc and edc which one dc i tried everything if u have a facebook or hangout please enlighten me please
ahmednabilessa is offline  
Thanks
1 User
Old 06/13/2019, 06:23   #10
 
Spirited's Avatar
 
elite*gold: 12
Join Date: Jul 2011
Posts: 8,211
Received Thanks: 4,114
Quote:
Originally Posted by ahmednabilessa View Post
when i do that my client cant open and there is DC and dc and edc which one dc i tried everything if u have a facebook or hangout please enlighten me please
There's a better way to do this, actually. Search for "AVCMsgDisconnect" in Conquer.exe using Notepad++ and replace it with "PLSNO_Disconnect". Make sure you save the file using Notepad++ and not notepad. Thank this post if this helped you.
Spirited is offline  
Thanks
2 Users
Old 06/13/2019, 09:40   #11
 
elite*gold: 0
Join Date: Dec 2007
Posts: 49
Received Thanks: 8
Quote:
Originally Posted by Spirited View Post
There's a better way to do this, actually. Search for "AVCMsgDisconnect" in Conquer.exe using Notepad++ and replace it with "PLSNO_Disconnect". Make sure you save the file using Notepad++ and not notepad. Thank this post if this helped you.
i do it but still get Disconnected but i'll give thank to you <3
ahmednabilessa is offline  
Old 06/16/2019, 02:49   #12
 
elite*gold: 0
Join Date: Dec 2007
Posts: 49
Received Thanks: 8
Quote:
Originally Posted by Spirited View Post
There's a better way to do this, actually. Search for "AVCMsgDisconnect" in Conquer.exe using Notepad++ and replace it with "PLSNO_Disconnect". Make sure you save the file using Notepad++ and not notepad. Thank this post if this helped you.

do u have any idea why i get DC ?
ahmednabilessa is offline  
Old 06/16/2019, 17:03   #13
 
Super Aids's Avatar
 
elite*gold: 0
Join Date: Dec 2012
Posts: 1,761
Received Thanks: 946
Quote:
Originally Posted by ahmednabilessa View Post
do u have any idea why i get DC ?
Go to the end of the file and delete the last "a", "b" or "c" you can find.

Those security measures added by TQ which prevents you from doing what you want.

Also find "TQServer" and replace it by "0xffffff"
Super Aids is offline  
Thanks
1 User
Old 06/16/2019, 17:07   #14
 
turk55's Avatar
 
elite*gold: 130
Join Date: Oct 2007
Posts: 1,652
Received Thanks: 701
Quote:
Originally Posted by Super Aids View Post
Also find "TQServer" and replace it by "0xffffff"
I believe he also has to do that with "TQClient", not sure if that was in Conquer.exe or that I am confusing it with something else...

But if you can find it in Conquer.exe you should do that too.
turk55 is offline  
Thanks
1 User
Old 06/16/2019, 19:26   #15
 
elite*gold: 0
Join Date: Dec 2007
Posts: 49
Received Thanks: 8
i got disconnected with game server i appreciate guys anyway thanks
ahmednabilessa is offline  
Reply


Similar Threads Similar Threads
[Key Commands] Default Key Commands for the beginners
10/01/2008 - General Gaming Releases - 0 Replies
Default keybindings: Abilities Window V Backpack Window: B Career Window: K Character Window: C Battlegroup Window: Left Alt + R Developer Window: ; Guild Window: G Help Window: H
QO @commands in CO
06/22/2006 - Conquer Online 2 - 17 Replies
Can anyone tell me if this is possible or not. if it is HOW??
Qonquer Commands In CO
06/22/2006 - Conquer Online 2 - 4 Replies
is there a way to make a file of the QO @commands in CO?
Wo sind die GM Commands hin?
05/23/2006 - WoW Private Server - 3 Replies
Doofe Frage, aber wo finde ich die gm commends für Ramas repack? Ich such hier alles ab aber is irgendwie nichts (Mehr) da, früher gabs sowas mal von Hrhr-Haha aber is irgendwie verschwunden ... plz help ;)



All times are GMT +2. The time now is 15:31.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.