Results 1 to 1 of 1
  1. #1
    HaoDetect
    HaoDetect is offline
    Inactive
    Join Date
    2017 Dec
    Posts
    1
    Thanks Thanks Given 
    0
    Thanks Thanks Received 
    0
    Thanked in
    0 Posts
    Rep Power
    0

    Exclamation Erro no Emulador de Aika

    Tentei criar um aika server , dai encontrei um emulador de Aika, mas quando inicio o project no delphi 7 da o seguinte erro no Structs in 'Structs.pas' , e no log aparece essa a seguinte mensagem [Fatal Error] GamerServer.dpr (35): File not found 'Generics.Collections.dcu'.

    já faz um tempinho q to nessa área de desenvolvimento C/C++ , VB E DELPHIN... Mas esse problema eu não consegui resolver e não vi sobre ele na internet.

    Aqui esta a estrutura do project...

    program GameServer;

    {$APPTYPE CONSOLE}

    {$R *.res}

    uses
    SysUtils,
    Generics.Collections,
    ClientConnection in 'Connection\ClientConnection.pas',
    EncDec in 'Connection\EncDec.pas',
    ServerSocket in 'Connection\ServerSocket.pas',
    GlobalDefs in 'Data\GlobalDefs.pas',
    MiscData in 'Data\MiscData.pas',
    Packets in 'Data\Packets.pas',
    PlayerData in 'Data\PlayerData.pas',
    Functions in 'Functions\Functions.pas',
    ItemFunctions in 'Functions\ItemFunctions.pas',
    Load in 'Functions\Load.pas',
    Log in 'Functions\Log.pas',
    Threads in 'Functions\Threads.pas',
    BaseMob in 'Mob\BaseMob.pas',
    NPC in 'Mob\NPC.pas',
    Player in 'Mob\Player.pas',
    Aylin in 'PacketHandlers\NPCs\Aylin.pas',
    NpcFunctions in 'PacketHandlers\NPCs\NpcFunctions.pas',
    NPCHandlers in 'PacketHandlers\NPCs\NPCHandlers.pas',
    Tiny in 'PacketHandlers\NPCs\Tiny.pas',
    Commands in 'PacketHandlers\Commands.pas',
    PacketHandlers in 'PacketHandlers\PacketHandlers.pas',
    Volatiles in 'PacketHandlers\Volatiles.pas',
    MestreGriffo in 'PacketHandlers\NPCs\MestreGriffo.pas',
    Util in 'Functions\Util.pas',
    BuffsData in 'Data\BuffsData.pas',
    Structs in 'Structs.pas';

    var
    stay: string;

    begin
    try
    Logger := TLog.Create;

    Server := TServerSocket.Create;
    Server.Port := 8822;

    Server.UpTime := now;

    CurrentDir := GetCurrentDir;

    TLoad.InitCharacters;

    {
    Neighbors[0] := TPosition.Create(0, 1);
    Neighbors[1] := TPosition.Create(0,-1);
    Neighbors[2] := TPosition.Create(1, 0);
    Neighbors[3] := TPosition.Create(-1,0);
    Neighbors[4] := TPosition.Create(1, 1);
    Neighbors[5] := TPosition.Create(-1,-1);

    NpcFuncs := TNpcFunctions.Create;
    ItemFuncs := TItemFunctions.Create;

    ItemList := TDictionary<integer, TItemList>.Create;
    TeleportsList := TList<TTeleport>.Create;
    SkillsData := TList<TSkillData>.Create;
    MobBabyList := TList<TCharacter>.Create;
    MobGener := TDictionary<integer,TMOBGener>.Create;

    TLoad.ItemsList;
    TLoad.HeightMap;
    TLoad.MobBaby;
    TLoad.TeleportList;
    TLoad.SkillData;
    TLoad.MobList;
    }

    Server.StartServer;
    Server.DisconnectAll;
    while(Server.IsActive) do
    begin

    end;
    except
    on E: Exception do
    begin
    Writeln(E.ClassName, ': ', E.Message);
    LogTxt(stay);

    Readln(stay);
    end;
    end;
    end.

Similar Threads

  1. [Help] Erro no Aika, PvP e PvE nao aparece
    By jukanhamilk in forum Português
    Replies: 0
    Last Post: 2013-09-01, 03:42 PM
  2. [Help] Erro no Aika, PvP e PvE nao aparece
    By jukanhamilk in forum Aika Online
    Replies: 0
    Last Post: 2013-09-01, 03:42 PM
  3. [Help] wpe pro dando erro.
    By luiz in forum Trash Bin
    Replies: 0
    Last Post: 2012-08-23, 12:33 AM
  4. [Help] Erro No Job Quest AIKA BR
    By jkmaster in forum Aika Bots, Hacks, Cheats
    Replies: 1
    Last Post: 2012-03-13, 08:52 PM
  5. Emulador Xtrap
    By cobradagua in forum Aika Online
    Replies: 22
    Last Post: 2012-02-26, 05:26 AM

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •