Sabillah you have configurated and compile the source?
First I fix the title,and after I want check autocreate! :)
Printable View
Sabillah you have configurated and compile the source?
First I fix the title,and after I want check autocreate! :)
please can you tell me what ports need to be opened in an online vps point blank to play? :(:
Thx for sharing and continue projects!!
a question can use these files to create an online server on a VPS?
LOL?Add item|Game/Release/Data/Goods.xml
- - - Updated - - -
Withstand a lot of players.
pvp 1 vs 1 not work always waiting for game
mode chalenge fight bot just 30 second
why ? :o
We need fix pvp the server without pvp is a totally nothing and who can coding a pvp packet
and chat bug when you try chat the server shutdown
View image: fixthis'
How do i fix??? shop is not fixed
How can i create new account?
what did you edited to change room time to 30 sec ?
- - - Updated - - -
PROTOCOL_BATTLE_ROUND_START ?
Yes,edit PROTOCOL_BATTLE_ROUND_START!
Code:using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Core.Model;
namespace Game.Network.ServerPacket
{
public class PROTOCOL_BATTLE_ROUND_START : SendPacket
{
private Room room;
public PROTOCOL_BATTLE_ROUND_START(Room room)
{
this.room = room;
}
public override void WriteImpl()
{
WriteH(0xD2B);
// WriteB(new byte[] { 0x01, 0xB4, 0x00, 0x00, 0x00, 0x03, 0x00 });
WriteC(1);
//WriteD(room.getKillTime() * 60);
//WriteD(room.getTimeLost());
WriteD(room.getTimeLost());
//WriteD(20000);
WriteH(2);
// WriteC(2); // что это? - тип боя
// WriteD(room.getTimeLost());
// WriteH(3);
}
}
}