1.90 issues

admin
Site Admin
Posts: 294
Joined: Sat Jul 20, 2013 12:41 am

Re: 1.90 issues

Post 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;
Silentzg
Posts: 2
Joined: Mon Sep 30, 2013 5:27 pm

Re: 1.90 issues

Post 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.
admin
Site Admin
Posts: 294
Joined: Sat Jul 20, 2013 12:41 am

Re: 1.90 issues

Post by admin »

Maybe you are using a different sys-locale than English.
Silentzg
Posts: 2
Joined: Mon Sep 30, 2013 5:27 pm

Re: 1.90 issues

Post by Silentzg »

Right :) It's ok now, thank for help ^^
Acashia07
Posts: 2
Joined: Mon Jul 29, 2013 7:57 pm

Re: 1.90 issues

Post by Acashia07 »

I still need help q.q I cannot get this thing to run properly. I think I'm ARM retarded Lol.
Vhy
Posts: 1
Joined: Wed Nov 20, 2013 9:45 pm

Re: 1.90 issues

Post 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.
admin
Site Admin
Posts: 294
Joined: Sat Jul 20, 2013 12:41 am

Re: 1.90 issues

Post by admin »

Disable 64-bit
azriela
Posts: 2
Joined: Thu Nov 28, 2013 8:21 pm

Re: 1.90 issues

Post by azriela »

I get this errorImage
admin
Site Admin
Posts: 294
Joined: Sat Jul 20, 2013 12:41 am

Re: 1.90 issues

Post by admin »

You got a very old version, need to reinstall from the website installer.
azriela
Posts: 2
Joined: Thu Nov 28, 2013 8:21 pm

Re: 1.90 issues

Post by azriela »

Ty for Help :)
Post Reply