Imperio Source 5685 Full x64 bits

02/27/2013 05:54 desirex#31
Not you again -.-
02/27/2013 12:38 UzuNaruto98#32
Guys anybody knows whats causing the char creation error?

[Edit]:
How do you add an npc lookface? I made my npc and everything is great but I cant make a lookface, which includes the name of the npc too!
02/27/2013 23:56 denominator#33
I tried adding a Character through SQL as well and it still failed >.<
03/01/2013 00:10 donjwan3#34
i think there is a problem in database connection because i always get access denied error and i am sure about my connection info.

Quote:
Originally Posted by donjwan3 View Post
i think there is a problem in database connection because i always get access denied error and i am sure about my connection info.
ok i got it app.config :awesome:

now i always get invalid authentication any idea ?
03/01/2013 12:54 UzuNaruto98#35
Quote:
Originally Posted by donjwan3 View Post
i think there is a problem in database connection because i always get access denied error and i am sure about my connection info.



ok i got it app.config :awesome:

now i always get invalid authentication any idea ?

Did you change the ip in Program.cs?
03/01/2013 14:16 denominator#36
UzuNaruto98 have you figured out what the character creation issue is?
03/01/2013 14:48 UzuNaruto98#37
Quote:
Originally Posted by denominator View Post
UzuNaruto98 have you figured out what the character creation issue is?
I have absolutely no clue lol... Gonna tell you if I find anything new.
[Edit]:
I give up, I am gonna work on my old source!
03/01/2013 15:35 donjwan3#38
Quote:
Originally Posted by UzuNaruto98 View Post
Did you change the ip in Program.cs?
u mean gameIP in the Program.cs ?
03/01/2013 17:25 UzuNaruto98#39
Quote:
Originally Posted by donjwan3 View Post
u mean gameIP in the Program.cs ?
yeah, You have to change these:
1-Configuration.ini in the server.
2-exe.config in the server.
3-Program.cs in the server.
4-csv3config.ini in the Conquer folder.
03/01/2013 18:41 Arvydas000#40
Maybe someone can help fix it this error? [Only registered and activated users can see links. Click Here To Register...]
03/01/2013 22:32 UzuNaruto98#41
Quote:
Originally Posted by Arvydas000 View Post
Maybe someone can help fix it this error? URL]
Umm, my first guess would be that a variable is being used when its null(no-assigned value). for example: if you made a variable Entity user and then used it like this: if (user.Name == Arvydas).

You have to assign a value to the var first.
03/01/2013 23:27 donjwan3#42
what if i want this server to work with original TQ client 5685 ?
03/02/2013 02:21 denominator#43
I'm wondering if the problem lies in here somewhere?

Code:
using System;
using System.Text;

namespace Conquer_Online_Server.Network.GamePackets
{
    public class EnitityCreate : Interfaces.IPacket
    {
        public string Name;
        public ushort Body;
        public byte Class;
        public void Deserialize(byte[] buffer)
        {
            Name = Encoding.UTF7.GetString(buffer, 24, 16).Replace("\0","");
            Body = BitConverter.ToUInt16(buffer, 72);
            Class = (byte)BitConverter.ToUInt16(buffer, 74);
        }
        public byte[] ToArray()
        {
            throw new NotImplementedException();
        }
        public void Send(Client.GameState client)
        {
            throw new NotImplementedException();
        }
    }
}
03/02/2013 08:43 Arvydas000#44
Quote:
Originally Posted by UzuNaruto98 View Post
Umm, my first guess would be that a variable is being used when its null(no-assigned value). for example: if you made a variable Entity user and then used it like this: if (user.Name == Arvydas).

You have to assign a value to the var first.
But my code like this" if (EntityUID.Now == 0) "
03/06/2013 14:48 shiko kamal#45
ths bro