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!

How to show top notice ?

Status
Not open for further replies.
Newbie Spellweaver
Joined
Feb 12, 2011
Messages
21
Reaction score
1
How to show top notice ?



Please help me.
 
Junior Spellweaver
Joined
Feb 8, 2011
Messages
101
Reaction score
1
Insert the message you want to send in dbo.Pangya_Notice_List, and execute the following command:

Code:
USE Pangya_S4_TH
INSERT INTO Pangya_Server_Command (Command, Arg1, Target)
VALUES (0, 1, 20201)

The Arg1 Value ('1' in the example) means the Idx of your message.

You can check more commands here: http://forum.ragezone.com/f512/gmtool_cmd-727937/
 
Newbie Spellweaver
Joined
Feb 12, 2011
Messages
21
Reaction score
1
Check the gmtool thread

I can't found in GM Command:(:

---------- Post added at 03:50 PM ---------- Previous post was at 03:36 PM ----------

Insert the message you want to send in dbo.Pangya_Notice_List, and execute the following command:

Code:
USE Pangya_S4_TH
INSERT INTO Pangya_Server_Command (Command, Arg1, Target)
VALUES (0, 1, 20201)

The Arg1 Value ('1' in the example) means the Idx of your message.

You can check more commands here: http://forum.ragezone.com/f512/gmtool_cmd-727937/

the server is show Notice but No text - -

For exam text in Notice "Server Testing!!!!"

Please Help me again please:blushing:
 
Junior Spellweaver
Joined
Feb 8, 2011
Messages
101
Reaction score
1
"Insert the message you want to send in dbo.Pangya_Notice_List"
 
Joined
Jul 18, 2009
Messages
390
Reaction score
129
Open up the table "Pangya_Notice_List" and add a row with your desired announcement.
Save the table.

Run this query
Code:
USE Pangya_S4_TH
INSERT INTO Pangya_Server_Command (Command, Arg1, Target)
VALUES (0, 1, 20201)
like brumas posted earlier.

0 means you send a Notice Command to the gameserver.
1 refers to the idx of the row inside Pangya_Notice_List
20201 is your gameserver GUID

Can't make it any more easier.
 
Status
Not open for further replies.
Back
Top