Page 3 of 4

Re: 1.90 issues

Posted: Fri Aug 30, 2013 10:44 am
by admin
The visual styles fix is just for the 1st issue.
Now about the players DB,

- do you have a Logitech keyboard, and the option to use the LCD enabled in ARM? (this is related to the DB issue, might be triggered by an error initializing the lcd dll)
- the other way this can happen is really only with the double instance.. but ive checked the code, I can't see any possible way this could trigger otherwise..

Code: Select all

  MappingHandle := CreateFileMapping(INVALID_HANDLE_VALUE,
                                     nil,
                                     PAGE_READWRITE,
                                     0,
                                     SizeOf(TInstanceInfo),
                                     PChar('AionRainMeter'));
  if MappingHandle = 0 then
    RaiseLastOSError
  else
  begin
    // single first instance
    if GetLastError <> ERROR_ALREADY_EXISTS then
    begin
      IsG15InstanceDisabled := False;
      InstanceInfo := MapViewOfFile(MappingHandle, FILE_MAP_ALL_ACCESS, 0, 0, SizeOf(TInstanceInfo));
      InstanceInfo^.MainAppHandle := Application.Handle;
      // lasthandle is used to sendmessage, it will be updated by 1st instance to 2nd, in case there's a 3rd
      InstanceInfo^.LastAppHandle := Application.Handle;
      Result := False;
    end
    else //already running
    begin

      IsG15InstanceDisabled := True; // <- this variable triggers the player DB error msg
// <- this variable triggers the player DB error msg
// <- this variable triggers the player DB error msg
// <- this variable triggers the player DB error msg

      MappingHandle := OpenFileMapping(FILE_MAP_ALL_ACCESS,False,PChar('AionRainMeter'));
      if MappingHandle <> 0 then
      begin
        InstanceInfo := MapViewOfFile(MappingHandle, FILE_MAP_ALL_ACCESS, 0, 0, SizeOf(TInstanceInfo));
        InstanceInfo^.LastAppHandle := Application.Handle;
      end; // openfilemapping
    end; // running
  end;

Re: 1.90 issues

Posted: Mon Sep 30, 2013 5:31 pm
by Silentzg
Hi all !
Anyone knows why when i hit for 6251 dmg, ARM says 651? All damages are decrease..
I play gunslinger on eu server.

Re: 1.90 issues

Posted: Mon Sep 30, 2013 8:35 pm
by admin
Maybe you are using a different sys-locale than English.

Re: 1.90 issues

Posted: Mon Sep 30, 2013 9:01 pm
by Silentzg
Right :) It's ok now, thank for help ^^

Re: 1.90 issues

Posted: Sat Oct 26, 2013 1:22 am
by Acashia07
I still need help q.q I cannot get this thing to run properly. I think I'm ARM retarded Lol.

Re: 1.90 issues

Posted: Wed Nov 20, 2013 9:53 pm
by Vhy
Hello,
Every time i try to run aion via ARM 1.92 i get this messege
Image

I didnt find anyone else with the same problem so i'd figure i post it here.

Thanks a lot for your help.

Re: 1.90 issues

Posted: Thu Nov 21, 2013 12:38 am
by admin
Disable 64-bit

Re: 1.90 issues

Posted: Thu Nov 28, 2013 8:50 pm
by azriela
I get this errorImage

Re: 1.90 issues

Posted: Thu Nov 28, 2013 8:55 pm
by admin
You got a very old version, need to reinstall from the website installer.

Re: 1.90 issues

Posted: Fri Nov 29, 2013 7:26 am
by azriela
Ty for Help :)