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!

Gmtool_cmd

Initiate Mage
Joined
Mar 19, 2011
Messages
1
Reaction score
0
I want to use Notice . Where to activate it.



Sorry I'm not good at English.
 
Junior Spellweaver
Joined
Apr 19, 2006
Messages
119
Reaction score
15
put the message in pangya_notice_list then you will get Idx for the message
finally put the command in Pangya_server_command put command=0 arg1=Idx you got and target= port your server
 
Last edited:
Newbie Spellweaver
Joined
Mar 29, 2011
Messages
34
Reaction score
7
Anyone found out the command id for the lottery please?

Thanks
 
Junior Spellweaver
Joined
Nov 12, 2010
Messages
169
Reaction score
69
how to change room in tournament 100 player ?

Only a GM account can do that (capability = 4)

This is off-topic :/

@codyx: 1) what do you mean? 2) use the search button
 
Last edited:
Newbie Spellweaver
Joined
Mar 29, 2011
Messages
34
Reaction score
7
Only a GM account can do that (capability = 4)

This is off-topic :/

@codyx: 1) what do you mean? 2) use the search button

I am trying to find out how to change the papel lottery drop rate.
Scratch, pang, XP, event are working good and thanks for the people that find it out.
I thought the drop rate from papel was the command ID 24^^ or do I need more args on it^^
Code:
USE Pangya_S4_TH
INSERT INTO Pangya_Server_Command (Command, Arg1, Target)
VALUES (24, 400, 20201)
but it doesn't work. So Jackpot is something I didn't found out yet.
I know there is a GM tool that got released but as Sarah wrote, giving power to a software that we don't 100% trust should be avoided. SQL can be too easily manipulated.

Thanks in advance for the help,
codyx

------------------------------------------------------------------------------------
ok I found out int the GMtool^^ Hope it can help the next ones.
Code:
num3 = &H15
        num = Conversions.ToInteger(Me.rtBogoR.SelectedItem)
        num2 = Conversions.ToInteger(Me.rtBogoC.SelectedItem)
        conn.Query = String.Concat(New String() { "INSERT INTO [Pangya_Server_Command] ([Command],[Arg1],[Arg2],[Target],[ReserveDate],[RegDate]) VALUES('", Conversions.ToString(num3), "','", Conversions.ToString(num), "','", Conversions.ToString(num2), "','", str4, "','", str, "','", str3, "')" })
 
Last edited:
Back
Top