Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[Release] GM Tool Application

Newbie Spellweaver
Joined
Nov 8, 2009
Messages
16
Reaction score
9
Hello everyone ...

I'm posting for all ...

I will not give support for this tool. Sorry ...:<:

suneka - [Release] GM Tool Application - RaGEZONE Forums


Features

1. Register and delete Global Messages

2. Send instant message or to schedule a date and time specified.

3. Rate of change from Scratch, Black Paper, Pang, XP simultaneously for each server and can be scheduled beginning and end.

4. Sending custom commands without needing to access the database.

5. List of Commands scheduled with the possibility of removal when necessary.

Language: EN:eek:tt1:

Edit:

Execute this sql for fix erros on insert messages.

Code:
USE [Pangya_S4_TH]
GO
--------------------------------
--by Pangya.Gmaniacos.com-
--------------------------------
/****** Object:  Table [dbo].[Pangya_Server_Command]    Script Date: 03/07/2011 09:05:06 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_PADDING ON
GO
ALTER TABLE [dbo].[Pangya_Server_Command](
	[Command] [int] NOT NULL CONSTRAINT [DF_Pangya_Server_Command_Command]  DEFAULT ((0)),
	[Arg1] [int] NULL CONSTRAINT [DF_Pangya_Server_Command_Arg1]  DEFAULT ((0)),
	[Arg2] [int] NULL CONSTRAINT [DF_Pangya_Server_Command_Arg2]  DEFAULT ((0)),
	[Arg3] [int] NULL CONSTRAINT [DF_Pangya_Server_Command_Arg3]  DEFAULT ((0)),
	[Arg4] [int] NULL CONSTRAINT [DF_Pangya_Server_Command_Arg4]  DEFAULT ((0)),
	[Arg5] [varchar](100) NULL CONSTRAINT [DF_Pangya_Server_Command_Arg5]  DEFAULT ((0)),
	[Target] [int] NOT NULL,
	[RegDate] [smalldatetime] NOT NULL CONSTRAINT [DF_Pangya_Server_Command_RegDate]  DEFAULT (getdate()),
	[ReserveDate] [smalldatetime] NULL,
	[id] [int] IDENTITY(1,1) NOT NULL
) ON [PRIMARY]

GO
SET ANSI_PADDING OFF

Online Virus Scan:

Powered by Pangya Gmaniacos
 

Attachments

You must be registered for see attachments list
Last edited:
Newbie Spellweaver
Joined
Nov 27, 2006
Messages
68
Reaction score
12
thx for sharing even if you don't want to provide any support :p
perhaps you could give some more info about it.
how to use it: sa and Gm registrations. ;)
 
Last edited:
Joined
Jul 18, 2009
Messages
392
Reaction score
129
Won't be using this because i basically do not trust tools where you have to input SQL information inside the program itself, when it's posted by someone with a low postcount.

Gonna investigate if this is safe to use first.
 
Junior Spellweaver
Joined
Apr 19, 2006
Messages
119
Reaction score
15
I've try but ain't work at all
 
Newbie Spellweaver
Joined
Feb 12, 2011
Messages
21
Reaction score
1
it show to
"The conversion of a varchar data type to smalldateyime data type resulted in an out-of range value
The statement has been terminated"
 

Attachments

You must be registered for see attachments list
Last edited:
Newbie Spellweaver
Joined
Nov 8, 2009
Messages
16
Reaction score
9
Won't be using this because i basically do not trust tools where you have to input SQL information inside the program itself, when it's posted by someone with a low postcount.

Gonna investigate if this is safe to use first.



:eek:tt1:
 
Newbie Spellweaver
Joined
Nov 20, 2010
Messages
39
Reaction score
6
U rocks Gm tools Working !!!!!

But i have "incorrect syntax near ']'" with openning windows pangya.gmanicos.com
 
Newbie Spellweaver
Joined
Mar 29, 2011
Messages
34
Reaction score
7
with Reflector .Net C# it's easy to check the code.

Sample:
Code:
num = Conversions.ToInteger(this.TextBox8.Text);
        str3 = this.TextBox3.Text;
        str4 = this.TextBox4.Text;
        str5 = this.TextBox5.Text;
        str6 = this.TextBox6.Text;
        str7 = this.TextBox7.Text;
        str9 = str;
        str8 = &DateTime.Now.ToString("MM/dd/yyyy hh:mm:ss");
        str2 = null;
        str9 = str9.Substring(0, 5);
        if ((this.RadioButton1.Checked == 0) == null)
        {
            goto Label_0171;
        }
        time = Conversions.ToDate(this.MaskedTextBox1.Text);
        str10 = Conversions.ToString(&time.Hour);
        str11 = Conversions.ToString(&time.Minute);
        str2 = &time.ToString("MM/dd/yyyy") + " " + str10 + ":" + str11;
    Label_0171:;
        conn.Query = "INSERT INTO [Pangya_Server_Command] ([Command],[Arg1],[Arg2],[Arg3],[Arg4],[Arg5],[Target],[ReserveDate],[RegDate]) VALUES('" + Conversions.ToString(num) + "','" + str3 + "','" + str4 + "','" + str5 + "','" + str6 + "','" + str7 + "','" + str9 + "','" + str2 + "','" + str8 + "')";
        conn.execSql("I", "");
        Interaction.MsgBox("Sucess!!!", 0, null);
I hate the way it's coded cause there's no decent var names, no comments but it's good to avoid the code copy^^
Anyway in the code itself at the first view, it looks safe.

The only thing that disturbs me is that this program is made by or for a company hold by ntreev. Is this a way to get the IP's of the private servers? I dunno or I at least I didn't find how they do >.<
 
Last edited:
Deny everything.
Joined
Jun 17, 2005
Messages
488
Reaction score
110
People who didn't do so already should read the old preview thread for this tool, more specifically the concerns about the security and the implementation.

I can only advise people not to use this tool and go with Management Studio. If you don't speak SQL, you shouldn't run a server in the first place.

This tool is neither for GMs (because it requires database access and that's nothing a GM should have - only an administrator) nor does the GM capability check do anything useful (if I already provide the tool with database credentials, why would I need to check for GM capabilities?). It gives people a wrong impression and a false sense of security.
 
Newbie Spellweaver
Joined
Apr 22, 2011
Messages
36
Reaction score
6
it works perfectly thank you for your work for the people who do not have to know when the 2005 mysql ports are unlocked
 
Newbie Spellweaver
Joined
Jul 10, 2011
Messages
58
Reaction score
29
thanks... xD i need that
at this last month will trying to make PS pangya
 
Back
Top