Jump to content

B1n4ry

Member
  • Content Count

    113
  • Joined

  • Last visited

  • Medals

  • Medals

Posts posted by B1n4ry


  1. Just to compare (Yah, I was bored),

    I was just opening the old JSRS 1.4.3 files to take a look into them to understand the way I edited the weapon ranges back in the days. And apparently I just edited 3 distance steps in 1.4.3. Just 3! Near, Mid and Far as they where named.

    1.5 has 20 distance steps. Tail, Near, Near1, Near2, Near3, NearToMidBridge1, NearToMidBridge2, Mid, Mid1, Mid2, Mid3, MidToFarBridge1, MidToFarBridge2, Far, Far1, Far2, Far3, Far4, Far5 and Echo, the last step. The filesize of the distance.pbo went from 24MB to 147MB. The sound sample went from 204 sounds to unbelievable 1.470 sounds! We support 3 new weapon type, including the Gau8 (WIP, still need a lot of tweaking).

    The total mod size went from 1.52GB to 1.83GB, from 684 files to 730 files.

    Something happened I can say....

    YUS :D

    Will the Gau8 have its awesome "fart" sound on distance?

    Same for the M134 or the M197?

    Another thing related to this, what about far explosion sounds for this kind of weapons?

    Well, whatever.

    I think, JSRS is by far the best Sound mod ever created for a game.

    I hope you understand what you did there LJ.

    You are like a legend now ^^

    some references. the videos are nice to watch anyway =)


  2. I noticed a little sound "Bug"

    I think its because of the ArmA engine, but maybe there is a way to fix it.

    I'll try to explain it as good as i can.

    Okay, imagine you standing somewhere in e.g. Takistan.

    A helicopter is passing over you and keeps flying in one direction.

    You hear him and suddenly you see him crash.

    In the same moment, when he crashes, the sound of his rotor/engine disappears.

    After some time (depends on the distance) you hear the explosion.

    The "bug" here is, that you would still hear the the helicopter flying, even if he's crashed.

    The same applies for Tanks and Cars.

    As is said, i suspect it is a Arma engine "problem"

    I don't know if its changeable via a script or something. (maybe with the Vehicle distance script?)

    But a this would make the game a bit more authentic and JSRS more Awesome. (if that is still possible) ^^


  3. Since no one searches hard enuff, this thread pretty much explains what you should be using in the arma2/arma2oa.cfg files for the dedicated server. The whole thread is good, but the real information starts with post #35.

    ...Syn...

    Okay, thank you. We'll take a closer look at that :D

    Well, i spended one hour searching. I have found that thread too, but i didn't read so far, only the first page :/


  4. Hello BI Community

    We have some Problems with our Server configuration.

    Main problems are Lags, Desyncs and other small things.

    Well my idea is, everyone who owns or administrate a Server could post following please:

    Server specs

    number of gameservers running

    basic.cfg | maybe with some declarations

    Optional

    server.cfg | don't forget to delete the Password line!

    Sense of the thing is, that everyone who has a server, or has problems with it, can take a look in this thread and see,

    how well (or not) it runs for other owner.

    Goal should be, to give people a reference to other Serverowners so they have a chance to set up their servers as good as possible.

    Also, it saves a lot of time, because testing server configs can take pretty long. So share results is also a good idea.

    I hope, that many people will post ther configs here. So we get a nice collection of configs.

    So, i'll beginn. Please, don't discuss to much about the cofigs. If its really necessary, an other thread should be used/made for this. Thank you.

    Server Specs:

    Processor: Intel® Xeon® E3-1245 Quad-Core w/ Hyper-Threading

    RAM:16 GB DDR3 RAM ECC

    HDD: 2 x 3 TB SATA 6 Gb/s HDD 7200 rpm (Software-RAID 1)

    Networkcard: 1 GBit OnBoard (100Mbps Ethernet connection)

    OS: Windows Server 2008 R2 Standard Edition

    Number of Gaemservers: 2 [1 CO Public Server + 1 ACE+ACRE Server]

    basic.cfg

    We use the BI defaults because we are still in testing :S

    language="German";

    adapter=-1;

    3D_Performance=1;

    Resolution_W=800;

    Resolution_H=600;

    Resolution_Bpp=32;

    MinBandwidth=131072;

    MaxBandwidth=2147483647;

    MaxMsgSend=128;

    MaxSizeGuaranteed=512;

    MaxSizeNonguaranteed=256;

    MinErrorToSend=0.001;

    MinErrorToSendNear=0.0099999998;

    MaxCustomFileSize=1600000;

    Windowed=0;

    PS:

    I searched the forum for a similiar thread like this. But i didn't found any. So, if there is already one, i'm very sorry, and would please an Admin to delete this one. To be honest, i didn't knew, what Tags i should search for. :S


  5. Hello Guys!

    Recently, because of some past events, we switched to a Server with a Windows2008R2 OS.

    To start the server simply, i made a Batch file, which is starting the arma2oaserver.exe with some parameters.

    Actually it was my first time making a batch file, it looks like this:

    echo off
    
    start "" "C:\Program Files\Bohemia Interactive\ArmA 2\arma2oaserver.exe" Parameter "-config=public.cfg -mod=@expansion/beta;@expansion/beta/expansion;@cba;@cba_a2;@cba_oa;@Arma2NET -port=2302"
    
    pause
    

    Problem here: Server can not be seen in the Server list. (with the SAME parameters in a shortcut, it works)

    But i would also like to have another batch file, which is starting the server.exe with the mod parameter.

    The mods should be written in an other txt file, like "ace_server_mods.txt"

    The batchfile should read the ace_server_mods.txt and add these mods into a variable, which is written for the -mods= line

    Simple example:

    Batch file

    REM echo off
    
    set str="command to read the ace_server_mods.txt"
    
    start "" "C:\Program Files\Bohemia Interactive\ArmA 2\arma2oaserver.exe" Parameter "-port=2402 -config=ace.cfg -mod=%str%"
    
    pause
    

    ace_server_mods.txt

    @cba;@cba_a2;@cba_oa;@ace;@acex;@acex_ru;@acex_usnavy
    

    There are 2 main reason that i want to do it like that.

    1. It makes easy for other people to start the server AND editing the mods line.

    2. We are using many mods. And sometimes, not all mods can be written into the target line of the shortcut. (its limited to 255 characters i guess)

    It would be nice if someone could help me with that. I'll also give a DL link for that batch files, so everyone can use them. (if someone wants ist)


  6. I don't like that idea, because my system is on a boarder between low and high.

    I can run ArmA 2 with an avg. of 22-28 FPS

    Problem is, that i drop sometimes under the 20 FPS mark (especially in Woods and/or with ACE)

    I actually enjoy your distance script and its running really well on my system, even with ACE, ACRE and so on.

    But if i cant run the HighEnd version (which i would prefer of course) i have to switch to the LowEnd version, which does not have the distance script, which is actually working fine for me.

    So, if you gonna split up the Mod, i would say make 3 parts.

    HighEnd: Includes all Sounds + all features of JSRS

    LowEnd: All JSRS Sounds + Distance Script (+ Unit Sounds?)

    Lite: ONLY Sounds, no features

    This would be my suggestion, i hope you got my point xD


  7. I play at 1.60 and will play for out AA3.

    Because 1..62 send me error.

    Who play at 1.60 and will play?

    Please, don't use google translator or similar (not for whole sentences), it will just mess up.

    B1n4ry,

    In case you aren't aware, BIS now cares about DayZ more than the players who bought their game before it was popular.

    They've decided it's part of their "best practices" to release client patches without warning, and ensure the dedicated server executables aren't released for a few weeks so people can't play. Unless they're playing DayZ, of course. Great system where Steam users can't tell the game NOT to update, and thus get locked out of their own linux servers.

    Of course, the entire problem could be alleviated by delaying patches until the dedicated server .exe's are also available, but evidently that hasn't occurred to BIS.

    I actually noticed it too. Well, it's a big chance to gain some attention. Which means more money, what is also good for us! (the "OLD" ArmA players). With more money BIS is able to spend it in the game... -> Make the game better.

    But you are right, if they change their orientation (away from Mil. Sim.), ArmA will screw up. And i, personaly, won't spend anymore money for BIS, if they go away from that, what got me to buy ArmA.. -> One of the best Mil. Sim. i've seen.

    I hope they'll see this "anger" in the community and, hopefully at least, give both sides (DayZ Kids vs. Old MilSim gramps), the same "attention".

    So, that both sides are satisfied.

    That's my opinion, but that does not belong here.


  8. Now if I move the units to lets say, a position on land, the "teleport" from the first spawn doesnt actually work and you are stranded out in the middle of no where. That was one of the items i experimented with. Why does editing the defines.sqf break the mission just out of curiosity. The only edits I made to mine were adding new units to the west soldier classes

    Same to me mate.

    But i don't know why :(

    Its mystery to me xd


  9. The problem is, that the units are placed out of Map in the Water.

    You have to know, that when you are in spectator mode (where you can select your spawn positon) your unit is at the start spawn location (where they are placed on the map -> in the Water). So, when you spawn, the actual stance is copied also, in this case its swimming.


  10. Has anyone had any issues with players respawning in the swimming state in the ground?

    Only in Lingor...

    I also noticed, that if i change anything in common/defines.sqf in the Lingor Insurgency, the mission is buged immediately.

    Spawning in the water, MHQ doesn't spawn etc.

    To solve that swimming thing, just swim around a bit, or get in a vehicle, that should do it.


  11. I don't know if you heard it, LJ

    But Rocket mentioned your Mod in his last live interview by FPSGuru.

    He said its a really awesome Mod, and people should try it out ;D

    He came to this, after i and someone else "spamed" the chat with the question, if DayZ will be compatible with other Mod, like JSRS.

    So keep it coming, you are awesome ^^


  12. Sounds like fun ^^

    Maybe you can give us an Init line, to activate these sounds.

    With that, we can add these sounds to Replacement units or new ones.

    This would solve the problem, that other units have the wrong sound for there class.

    Little question btw, will this support your first person script?

    So, you only hear this sounds when you are in first person?


  13. Today our Server crashed. The log file reportet some stange error, i've never seen.

    I don't know whats causing this error, but maybe it has something todo with the Beta Server.

    Data:

    Root Server with Debian 6.0

    Server Version Beta: v1.60.94342

    Mission was an edited Insurgency on Takistan

    Mods:

    @cba;

    @ace;

    @acex;

    @acex_ru;

    @acex_usnavy;

    @acre;

    @jayarma2lib;

    @bwmod;

    @bwmod_ace;

    @amt;

    @glt;

    @rksl;

    @bw-compilation;

    @bw-compilation_ace;

    @gaf;

    @gaf_ace;

    @gaf_acre;

    @r3f;

    @rh_weapons;

    @ad_helos;

    @snr;

    @sbe_acr;

    @lingor;

    @asr_ai;

    @tpwc_ai_suppress

    Server Log:

    *** glibc detected *** /home/arma/arma2/server: munmap_chunk(): invalid pointer: 0x10000000 ***

    ======= Backtrace: =========

    /lib32/libc.so.6(+0x6bf31)[0xf74e6f31]

    /lib32/libc.so.6(+0x6d1ce)[0xf74e81ce]

    /home/arma/arma2/server[0x80e3fcf]

    /home/arma/arma2/server[0x83544cb]

    /home/arma/arma2/server[0x81af826]

    /home/arma/arma2/server[0x81d6105]

    /home/arma/arma2/server[0x808d618]

    /home/arma/arma2/server[0x81d3831]

    /home/arma/arma2/server[0x86ea02a]

    /home/arma/arma2/server[0x87279c3]

    /home/arma/arma2/server[0x8ee20fe]

    /home/arma/arma2/server[0x8ee2b46]

    /home/arma/arma2/server[0x8ef84f5]

    /lib32/libc.so.6(__libc_start_main+0xe6)[0xf7491c76]

    /home/arma/arma2/server[0x804bb91]

    ======= Memory map: ========

    08048000-090f1000 r-xp 00000000 09:03 68288562 /home/arma/arma2/server

    090f1000-09103000 rw-p 010a9000 09:03 68288562 /home/arma/arma2/server

    09103000-0912f000 rw-p 00000000 00:00 0

    0a00d000-2f870000 rw-p 00000000 00:00 0 [heap]

    c7400000-c75af000 rw-p 00000000 00:00 0

    c75af000-c7600000 ---p 00000000 00:00 0

    c7600000-c76fc000 rw-p 00000000 00:00 0

    c76fc000-c7700000 ---p 00000000 00:00 0

    c7700000-c7800000 rw-p 00000000 00:00 0

    c7800000-c79fc000 rw-p 00000000 00:00 0

    c79fc000-c7a00000 ---p 00000000 00:00 0

    c7a00000-c7a24000 rw-p 00000000 00:00 0

    c7a24000-c7b00000 ---p 00000000 00:00 0

    c7b00000-c7c00000 rw-p 00000000 00:00 0

    c7c00000-c7e00000 rw-p 00000000 00:00 0

    c7e00000-c8000000 rw-p 00000000 00:00 0

    c8000000-c80fe000 rw-p 00000000 00:00 0

    c80fe000-c8100000 ---p 00000000 00:00 0

    c8100000-c81fa000 rw-p 00000000 00:00 0

    c81fa000-c8200000 ---p 00000000 00:00 0

    c8200000-c8400000 rw-p 00000000 00:00 0

    c8400000-c84fc000 rw-p 00000000 00:00 0

    c84fc000-c8500000 ---p 00000000 00:00 0

    c8500000-c85fe000 rw-p 00000000 00:00 0

    c85fe000-c8600000 ---p 00000000 00:00 0

    c8600000-c86f4000 rw-p 00000000 00:00 0

    c86f4000-c8700000 ---p 00000000 00:00 0

    c8700000-c87fd000 rw-p 00000000 00:00 0

    c87fd000-c8800000 ---p 00000000 00:00 0

    c8800000-c88ff000 rw-p 00000000 00:00 0

    c88ff000-c8900000 ---p 00000000 00:00 0

    c8a00000-c8aff000 rw-p 00000000 00:00 0

    c8aff000-c8b00000 ---p 00000000 00:00 0

    c8b00000-c8bfd000 rw-p 00000000 00:00 0

    c8bfd000-c8c00000 ---p 00000000 00:00 0

    c8c00000-c8e00000 rw-p 00000000 00:00 0

    c8e00000-c8eff000 rw-p 00000000 00:00 0

    c8eff000-c8f00000 ---p 00000000 00:00 0

    c8f00000-c8ffb000 rw-p 00000000 00:00 0

    c8ffb000-c9000000 ---p 00000000 00:00 0

    c9000000-c90fc000 rw-p 00000000 00:00 0

    c90fc000-c9100000 ---p 00000000 00:00 0

    c9100000-c9200000 rw-p 00000000 00:00 0

    c9200000-c93ff000 rw-p 00000000 00:00 0

    c93ff000-c9400000 ---p 00000000 00:00 0

    c9400000-c94fa000 rw-p 00000000 00:00 0

    c94fa000-c9500000 ---p 00000000 00:00 0

    c9500000-c9600000 rw-p 00000000 00:00 0

    c9700000-c9800000 rw-p 00000000 00:00 0

    c9900000-c99fd000 rw-p 00000000 00:00 0

    c99fd000-c9a00000 ---p 00000000 00:00 0

    c9a00000-c9aff000 rw-p 00000000 00:00 0

    c9aff000-c9b00000 ---p 00000000 00:00 0

    c9b00000-c9bfe000 rw-p 00000000 00:00 0

    c9bfe000-c9c00000 ---p 00000000 00:00 0

    c9c00000-c9d00000 rw-p 00000000 00:00 0

    c9d00000-c9dff000 rw-p 00000000 00:00 0

    c9dff000-c9e00000 ---p 00000000 00:00 0

    c9e00000-c9efe000 rw-p 00000000 00:00 0

    c9efe000-c9f00000 ---p 00000000 00:00 0

    c9f00000-ca000000 rw-p 00000000 00:00 0

    ca100000-ca200000 rw-p 00000000 00:00 0

    ca300000-ca3ff000 rw-p 00000000 00:00 0

    ca3ff000-ca400000 ---p 00000000 00:00 0

    ca500000-ca5ff000 rw-p 00000000 00:00 0

    ca5ff000-ca600000 ---p 00000000 00:00 0

    ca700000-ca800000 rw-p 00000000 00:00 0

    ca800000-ca900000 rw-p 00000000 00:00 0

    ca900000-ca9fe000 rw-p 00000000 00:00 0

    ca9fe000-caa00000 ---p 00000000 00:00 0

    caa00000-cab00000 rw-p 00000000 00:00 0

    cab00000-cabff000 rw-p 00000000 00:00 0

    cabff000-cac00000 ---p 00000000 00:00 0

    cad00000-cadfe000 rw-p 00000000 00:00 0

    cadfe000-cae00000 ---p 00000000 00:00 0

    cae00000-caeff000 rw-p 00000000 00:00 0

    caeff000-caf00000 ---p 00000000 00:00 0

    caf00000-cb000000 rw-p 00000000 00:00 0

    cb100000-cb200000 rw-p 00000000 00:00 0

    cb200000-cb2ff000 rw-p 00000000 00:00 0

    cb2ff000-cb300000 ---p 00000000 00:00 0

    cb300000-cb3f8000 rw-p 00000000 00:00 0

    cb3f8000-cb400000 ---p 00000000 00:00 0

    cb500000-cb5f7000 rw-p 00000000 00:00 0

    cb5f7000-cb600000 ---p 00000000 00:00 0

    cb600000-cb700000 rw-p 00000000 00:00 0

    cb700000-cb7fe000 rw-p 00000000 00:00 0

    cb7fe000-cb800000 ---p 00000000 00:00 0

    cb800000-cb8f8000 rw-p 00000000 00:00 0

    cb8f8000-cb900000 ---p 00000000 00:00 0

    cb900000-cba00000 rw-p 00000000 00:00 0

    cbb00000-cbbfc000 rw-p 00000000 00:00 0

    cbbfc000-cbc00000 ---p 00000000 00:00 0

    cbc00000-cbd00000 rw-p 00000000 00:00 0

    cbd00000-cbdfb000 rw-p 00000000 00:00 0

    cbdfb000-cbe00000 ---p 00000000 00:00 0

    cbe00000-cbefd000 rw-p 00000000 00:00 0

    cbefd000-cbf00000 ---p 00000000 00:00 0

    cbf00000-cbfff000 rw-p 00000000 00:00 0

    cbfff000-cc000000 ---p 00000000 00:00 0

    cc000000-cc0f8000 rw-p 00000000 00:00 0

    cc0f8000-cc100000 ---p 00000000 00:00 0

    cc100000-cc1ff000 rw-p 00000000 00:00 0

    cc1ff000-cc200000 ---p 00000000 00:00 0

    cc200000-cc300000 rw-p 00000000 00:00 0

    cc300000-cc400000 rw-p 00000000 00:00 0

    cc500000-cc6fa000 rw-p 00000000 00:00 0

    cc6fa000-cc700000 ---p 00000000 00:00 0

    cc700000-cc7ff000 rw-p 00000000 00:00 0

    cc7ff000-cc800000 ---p 00000000 00:00 0

    cc800000-cc900000 rw-p 00000000 00:00 0

    cc900000-cc9fe000 rw-p 00000000 00:00 0

    cc9fe000-cca00000 ---p 00000000 00:00 0

    cca00000-ccb00000 rw-p 00000000 00:00 0

    ccb00000-ccc00000 rw-p 00000000 00:00 0

    ccd00000-ccdf8000 rw-p 00000000 00:00 0

    ccdf8000-cce00000 ---p 00000000 00:00 0

    cce00000-ccefc000 rw-p 00000000 00:00 0

    ccefc000-ccf00000 ---p 00000000 00:00 0

    ccf00000-cd0f9000 rw-p 00000000 00:00 0

    cd0f9000-cd100000 ---p 00000000 00:00 0

    cd100000-cd1fd000 rw-p 00000000 00:00 0

    cd1fd000-cd200000 ---p 00000000 00:00 0

    cd200000-cd300000 rw-p 00000000 00:00 0

    cd300000-cd3ff000 rw-p 00000000 00:00 0

    cd3ff000-cd400000 ---p 00000000 00:00 0

    cd400000-cd500000 rw-p 00000000 00:00 0

    cd500000-cd5ff000 rw-p 00000000 00:00 0

    cd5ff000-cd600000 ---p 00000000 00:00 0

    cd600000-cd6fd000 rw-p 00000000 00:00 0

    cd6fd000-cd700000 ---p 00000000 00:00 0

    cd700000-cd7fe000 rw-p 00000000 00:00 0

    cd7fe000-cd800000 ---p 00000000 00:00 0

    cd800000-cd900000 rw-p 00000000 00:00 0

    cd900000-cd9f9000 rw-p 00000000 00:00 0

    cd9f9000-cda00000 ---p 00000000 00:00 0

    cda00000-cdafd000 rw-p 00000000 00:00 0

    cdafd000-cdb00000 ---p 00000000 00:00 0

    cdb00000-cdbff000 rw-p 00000000 00:00 0

    cdbff000-cdc00000 ---p 00000000 00:00 0

    cdc00000-cdcff000 rw-p 00000000 00:00 0

    cdcff000-cdd00000 ---p 00000000 00:00 0

    cdd00000-cdef8000 rw-p 00000000 00:00 0

    cdef8000-cdf00000 ---p 00000000 00:00 0

    cdf00000-cdffd000 rw-p 00000000 00:00 0

    cdffd000-ce000000 ---p 00000000 00:00 0

    ce000000-ce0fc000 rw-p 00000000 00:00 0

    ce0fc000-ce100000 ---p 00000000 00:00 0

    ce100000-ce1fe000 rw-p 00000000 00:00 0

    ce1fe000-ce200000 ---p 00000000 00:00 0

    ce200000-ce2ff000 rw-p 00000000 00:00 0

    ce2ff000-ce300000 ---p 00000000 00:00 0

    ce300000-ce500000 rw-p 00000000 00:00 0

    ce500000-ce5fd000 rw-p 00000000 00:00 0

    ce5fd000-ce600000 ---p 00000000 00:00 0

    ce600000-ce700000 rw-p 00000000 00:00 0

    ce700000-ce7fe000 rw-p 00000000 00:00 0

    ce7fe000-ce800000 ---p 00000000 00:00 0

    ce800000-ce900000 rw-p 00000000 00:00 0

    ce900000-cea00000 rw-p 00000000 00:00 0

    ceb00000-cecf5000 rw-p 00000000 00:00 0

    cecf5000-ced00000 ---p 00000000 00:00 0

    ced00000-ceefd000 rw-p 00000000 00:00 0

    ceefd000-cef00000 ---p 00000000 00:00 0

    cef00000-cefff000 rw-p 00000000 00:00 0

    cefff000-cf000000 ---p 00000000 00:00 0

    cf100000-cf1ff000 rw-p 00000000 00:00 0

    cf1ff000-cf200000 ---p 00000000 00:00 0

    cf200000-cf2fd000 rw-p 00000000 00:00 0

    cf2fd000-cf300000 ---p 00000000 00:00 0

    cf300000-cf3fe000 rw-p 00000000 00:00 0

    cf3fe000-cf400000 ---p 00000000 00:00 0

    cf400000-cf4fe000 rw-p 00000000 00:00 0

    cf4fe000-cf500000 ---p 00000000 00:00 0

    cf500000-cf600000 rw-p 00000000 00:00 0

    cf600000-cf800000 rw-p 00000000 00:00 0

    cf800000-cfa00000 rw-p 00000000 00:00 0

    cfa00000-cfafd000 rw-p 00000000 00:00 0

    cfafd000-cfb00000 ---p 00000000 00:00 0

    cfb00000-cfc00000 rw-p 00000000 00:00 0

    cfc00000-cfdfd000 rw-p 00000000 00:00 0

    cfdfd000-cfe00000 ---p 00000000 00:00 0

    cfe00000-d0000000 rw-p 00000000 00:00 0

    d0000000-d00ff000 rw-p 00000000 00:00 0

    d00ff000-d0100000 ---p 00000000 00:00 0

    d0100000-d0200000 rw-p 00000000 00:00 0

    d0200000-d02fb000 rw-p 00000000 00:00 0

    d02fb000-d0300000 ---p 00000000 00:00 0

    d0300000-d0400000 rw-p 00000000 00:00 0

    d0400000-d04ff000 rw-p 00000000 00:00 0

    d04ff000-d0500000 ---p 00000000 00:00 0

    d0500000-d05fd000 rw-p 00000000 00:00 0

    d05fd000-d0600000 ---p 00000000 00:00 0

    d0600000-d0800000 rw-p 00000000 00:00 0

    d0800000-d08ff000 rw-p 00000000 00:00 0

    d08ff000-d0900000 ---p 00000000 00:00 0

    d0900000-d09f1000 rw-p 00000000 00:00 0

    d09f1000-d0a00000 ---p 00000000 00:00 0

    d0a00000-d0aff000 rw-p 00000000 00:00 0

    d0aff000-d0b00000 ---p 00000000 00:00 0

    d0b00000-d0bfd000 rw-p 00000000 00:00 0

    d0bfd000-d0c00000 ---p 00000000 00:00 0

    d0c00000-d0dfd000 rw-p 00000000 00:00 0

    d0dfd000-d0e00000 ---p 00000000 00:00 0

    d0e00000-d0eff000 rw-p 00000000 00:00 0

    d0eff000-d0f00000 ---p 00000000 00:00 0

    d0f00000-d1000000 rw-p 00000000 00:00 0

    d1000000-d10ff000 rw-p 00000000 00:00 0

    d10ff000-d1100000 ---p 00000000 00:00 0

    d1100000-d11fe000 rw-p 00000000 00:00 0

    d11fe000-d1200000 ---p 00000000 00:00 0

    d1200000-d12fe000 rw-p 00000000 00:00 0

    d12fe000-d1300000 ---p 00000000 00:00 0

    d1300000-d1400000 rw-p 00000000 00:00 0

    d1400000-d14fa000 rw-p 00000000 00:00 0

    d14fa000-d1500000 ---p 00000000 00:00 0

    d1500000-d1600000 rw-p 00000000 00:00 0

    d1600000-d17fd000 rw-p 00000000 00:00 0

    d17fd000-d1800000 ---p 00000000 00:00 0

    d1800000-d19ff000 rw-p 00000000 00:00 0

    d19ff000-d1a00000 ---p 00000000 00:00 0

    d1a00000-d1bf8000 rw-p 00000000 00:00 0

    d1bf8000-d1c00000 ---p 00000000 00:00 0

    d1c00000-d1d00000 rw-p 00000000 00:00 0

    d1dfc000-d3a00000 rw-p 00000000 00:00 0

    d3a00000-d3aff000 rw-p 00000000 00:00 0

    d3aff000-d3b00000 ---p 00000000 00:00 0

    d3b00000-d3bff000 rw-p 00000000 00:00 0

    d3bff000-d3c00000 ---p 00000000 00:00 0

    d3c00000-d3e00000 rw-p 00000000 00:00 0

    d3e00000-d3efb000 rw-p 00000000 00:00 0

    d3efb000-d3f00000 ---p 00000000 00:00 0

    d3f00000-d4000000 rw-p 00000000 00:00 0

    d4000000-d4200000 rw-p 00000000 00:00 0

    d4200000-d4400000 rw-p 00000000 00:00 0

    d4400000-d4600000 rw-p 00000000 00:00 0

    d4600000-d4800000 rw-p 00000000 00:00 0

    d4800000-d4a00000 rw-p 00000000 00:00 0

    d4a00000-d4c00000 rw-p 00000000 00:00 0

    d4c00000-d4cff000 rw-p 00000000 00:00 0

    d4cff000-d4d00000 ---p 00000000 00:00 0

    d4d00000-d4e00000 rw-p 00000000 00:00 0

    d4e00000-d5000000 rw-p 00000000 00:00 0

    d5000000-d5100000 rw-p 00000000 00:00 0

    d5151000-d5200000 rw-p 00000000 00:00 0

    d5200000-d52f4000 rw-p 00000000 00:00 0

    d52f4000-d5300000 ---p 00000000 00:00 0

    d5300000-d5400000 rw-p 00000000 00:00 0

    d5400000-d54fb000 rw-p 00000000 00:00 0

    d54fb000-d5500000 ---p 00000000 00:00 0

    d55fd000-d55fe000 ---p 00000000 00:00 0

    d55fe000-d5dfe000 rw-p 00000000 00:00 0

    d5dfe000-d5dff000 ---p 00000000 00:00 0

    d5dff000-d65ff000 rw-p 00000000 00:00 0

    d65ff000-d6600000 ---p 00000000 00:00 0

    d6600000-d6e00000 rw-p 00000000 00:00 0

    d6e00000-d7000000 rw-p 00000000 00:00 0

    d7000000-d7200000 rw-p 00000000 00:00 0

    d7200000-d7400000 rw-p 00000000 00:00 0

    d7400000-d7600000 rw-p 00000000 00:00 0

    d7600000-d7800000 rw-p 00000000 00:00 0

    d7800000-d7a00000 rw-p 00000000 00:00 0

    d7a00000-d7af5000 rw-p 00000000 00:00 0

    d7af5000-d7b00000 ---p 00000000 00:00 0

    d7b00000-d7c00000 rw-p 00000000 00:00 0

    d7c00000-d7dfb000 rw-p 00000000 00:00 0

    d7dfb000-d7e00000 ---p 00000000 00:00 0

    d7e00000-d7ef9000 rw-p 00000000 00:00 0

    d7ef9000-d7f00000 ---p 00000000 00:00 0

    d7f00000-d8000000 rw-p 00000000 00:00 0

    d8000000-d8200000 rw-p 00000000 00:00 0

    d8200000-d83ff000 rw-p 00000000 00:00 0

    d83ff000-d8400000 ---p 00000000 00:00 0

    d8400000-d8600000 rw-p 00000000 00:00 0

    d8600000-d8800000 rw-p 00000000 00:00 0

    d8800000-d8a00000 rw-p 00000000 00:00 0

    d8a00000-d8c00000 rw-p 00000000 00:00 0

    d8c00000-d8e00000 rw-p 00000000 00:00 0

    d8e00000-d9000000 rw-p 00000000 00:00 0

    d9000000-d9200000 rw-p 00000000 00:00 0

    d9200000-d92ff000 rw-p 00000000 00:00 0

    d92ff000-d9300000 ---p 00000000 00:00 0

    d9300000-d9400000 rw-p 00000000 00:00 0

    d9400000-d9600000 rw-p 00000000 00:00 0

    d9600000-d9800000 rw-p 00000000 00:00 0

    d9800000-d9a00000 rw-p 00000000 00:00 0

    d9a00000-d9c00000 rw-p 00000000 00:00 0

    d9c00000-d9e00000 rw-p 00000000 00:00 0

    d9e00000-da000000 rw-p 00000000 00:00 0

    da000000-da200000 rw-p 00000000 00:00 0

    da200000-da400000 rw-p 00000000 00:00 0

    da400000-da600000 rw-p 00000000 00:00 0

    da600000-da6f2000 rw-p 00000000 00:00 0

    da6f2000-da700000 ---p 00000000 00:00 0

    da700000-da800000 rw-p 00000000 00:00 0

    da800000-daa00000 rw-p 00000000 00:00 0

    daa00000-dac00000 rw-p 00000000 00:00 0

    dac00000-dad00000 rw-p 00000000 00:00 0

    dad4d000-dad4e000 ---p 00000000 00:00 0

    dad4e000-dad5e000 rw-p 00000000 00:00 0

    dad5e000-dad5f000 ---p 00000000 00:00 0

    dad5f000-dad6f000 rw-p 00000000 00:00 0

    dad6f000-dad70000 ---p 00000000 00:00 0

    dad70000-dad80000 rw-p 00000000 00:00 0

    dad80000-dad90000 r-xp 00000000 09:02 24641539 /lib32/libresolv-2.11.2.so

    dad90000-dad91000 r--p 00010000 09:02 24641539 /lib32/libresolv-2.11.2.so

    dad91000-dad92000 rw-p 00011000 09:02 24641539 /lib32/libresolv-2.11.2.so

    dad92000-dad94000 rw-p 00000000 00:00 0

    dad94000-dad9e000 r-xp 00000000 09:02 24641543 /lib32/libnss_files-2.11.2.so

    dad9e000-dad9f000 r--p 00009000 09:02 24641543 /lib32/libnss_files-2.11.2.so

    dad9f000-dada0000 rw-p 0000a000 09:02 24641543 /lib32/libnss_files-2.11.2.so

    dada0000-dae00000 rw-p 00000000 00:00 0

    dae00000-daffb000 rw-p 00000000 00:00 0

    daffb000-db000000 ---p 00000000 00:00 0

    db000000-db200000 rw-p 00000000 00:00 0

    db200000-db400000 rw-p 00000000 00:00 0

    db400000-db600000 rw-p 00000000 00:00 0

    db600000-db800000 rw-p 00000000 00:00 0

    db800000-dba00000 rw-p 00000000 00:00 0

    dba00000-dbaf1000 rw-p 00000000 00:00 0

    dbaf1000-dbb00000 ---p 00000000 00:00 0

    dbb00000-dbbf5000 rw-p 00000000 00:00 0

    dbbf5000-dbc00000 ---p 00000000 00:00 0

    dbc00000-dbe00000 rw-p 00000000 00:00 0

    dbe00000-dbffe000 rw-p 00000000 00:00 0

    dbffe000-dc000000 ---p 00000000 00:00 0

    dc000000-dc200000 rw-p 00000000 00:00 0

    dc200000-dc400000 rw-p 00000000 00:00 0

    dc400000-dc600000 rw-p 00000000 00:00 0

    dc600000-dc800000 rw-p 00000000 00:00 0

    dc800000-dca00000 rw-p 00000000 00:00 0

    dca00000-dcc00000 rw-p 00000000 00:00 0

    dcc00000-dce00000 rw-p 00000000 00:00 0

    dce00000-dd000000 rw-p 00000000 00:00 0

    dd000000-dd200000 rw-p 00000000 00:00 0

    dd200000-dd400000 rw-p 00000000 00:00 0

    dd400000-dd600000 rw-p 00000000 00:00 0

    dd600000-dd800000 rw-p 00000000 00:00 0

    dd800000-dda00000 rw-p 00000000 00:00 0

    dda00000-ddc00000 rw-p 00000000 00:00 0

    ddc00000-dde00000 rw-p 00000000 00:00 0

    dde00000-de000000 rw-p 00000000 00:00 0

    de000000-de200000 rw-p 00000000 00:00 0

    de200000-de400000 rw-p 00000000 00:00 0

    de400000-de600000 rw-p 00000000 00:00 0

    de600000-de800000 rw-p 00000000 00:00 0

    de800000-dea00000 rw-p 00000000 00:00 0

    dea00000-dec00000 rw-p 00000000 00:00 0

    dec00000-dee00000 rw-p 00000000 00:00 0

    dee00000-df000000 rw-p 00000000 00:00 0

    df000000-df200000 rw-p 00000000 00:00 0

    df200000-df400000 rw-p 00000000 00:00 0

    df400000-df600000 rw-p 00000000 00:00 0

    df600000-df800000 rw-p 00000000 00:00 0

    df800000-dfa00000 rw-p 00000000 00:00 0

    dfa00000-dfc00000 rw-p 00000000 00:00 0

    dfc00000-dfe00000 rw-p 00000000 00:00 0

    dfe00000-e0000000 rw-p 00000000 00:00 0

    e0000000-e0200000 rw-p 00000000 00:00 0

    e0200000-e0400000 rw-p 00000000 00:00 0

    e0400000-e0600000 rw-p 00000000 00:00 0

    e0600000-e0800000 rw-p 00000000 00:00 0

    e0800000-e0a00000 rw-p 00000000 00:00 0

    e0a00000-e0c00000 rw-p 00000000 00:00 0

    e0c00000-e0e00000 rw-p 00000000 00:00 0

    e0e00000-e1000000 rw-p 00000000 00:00 0

    e1000000-e1200000 rw-p 00000000 00:00 0

    e1200000-e1400000 rw-p 00000000 00:00 0

    e1400000-e1600000 rw-p 00000000 00:00 0

    e1600000-e1800000 rw-p 00000000 00:00 0

    e1800000-e1a00000 rw-p 00000000 00:00 0

    e1a00000-e1c00000 rw-p 00000000 00:00 0

    e1c00000-e1e00000 rw-p 00000000 00:00 0

    e1e00000-e2000000 rw-p 00000000 00:00 0

    e2000000-e2200000 rw-p 00000000 00:00 0

    e2200000-e2400000 rw-p 00000000 00:00 0

    e2400000-e2600000 rw-p 00000000 00:00 0

    e2600000-e2800000 rw-p 00000000 00:00 0

    e2800000-e2a00000 rw-p 00000000 00:00 0

    e2a00000-e2c00000 rw-p 00000000 00:00 0

    e2c00000-e2e00000 rw-p 00000000 00:00 0

    e2e00000-e3000000 rw-p 00000000 00:00 0

    e3000000-e3200000 rw-p 00000000 00:00 0

    e3200000-e3400000 rw-p 00000000 00:00 0

    e3400000-e3600000 rw-p 00000000 00:00 0

    e3600000-e36ff000 rw-p 00000000 00:00 0

    e36ff000-e3700000 ---p 00000000 00:00 0

    e3700000-e3800000 rw-p 00000000 00:00 0

    e3800000-e3a00000 rw-p 00000000 00:00 0

    e3a00000-e3c00000 rw-p 00000000 00:00 0

    e3c00000-e3e00000 rw-p 00000000 00:00 0

    e3e00000-e4000000 rw-p 00000000 00:00 0

    e4000000-e4200000 rw-p 00000000 00:00 0

    e4200000-e4400000 rw-p 00000000 00:00 0

    e4400000-e4600000 rw-p 00000000 00:00 0

    e4600000-e4800000 rw-p 00000000 00:00 0

    e4800000-e4a00000 rw-p 00000000 00:00 0

    e4a00000-e4c00000 rw-p 00000000 00:00 0

    e4c00000-e4e00000 rw-p 00000000 00:00 0

    e4e00000-e5000000 rw-p 00000000 00:00 0

    e5000000-e5200000 rw-p 00000000 00:00 0

    e5200000-e5400000 rw-p 00000000 00:00 0

    e5400000-e5600000 rw-p 00000000 00:00 0

    e5600000-e5800000 rw-p 00000000 00:00 0

    e5800000-e5a00000 rw-p 00000000 00:00 0

    e5a00000-e5c00000 rw-p 00000000 00:00 0

    e5c00000-e5e00000 rw-p 00000000 00:00 0

    e5e00000-e6000000 rw-p 00000000 00:00 0

    e6000000-e6200000 rw-p 00000000 00:00 0

    e6200000-e6400000 rw-p 00000000 00:00 0

    e6400000-e6600000 rw-p 00000000 00:00 0

    e6600000-e6800000 rw-p 00000000 00:00 0

    e6800000-e6a00000 rw-p 00000000 00:00 0

    e6a00000-e6c00000 rw-p 00000000 00:00 0

    e6c00000-e6e00000 rw-p 00000000 00:00 0

    e6e00000-e7000000 rw-p 00000000 00:00 0

    e7000000-e7200000 rw-p 00000000 00:00 0

    e7200000-e7400000 rw-p 00000000 00:00 0

    e7400000-e7600000 rw-p 00000000 00:00 0

    e7600000-e7800000 rw-p 00000000 00:00 0

    e7800000-e7a00000 rw-p 00000000 00:00 0

    e7a00000-e7c00000 rw-p 00000000 00:00 0

    e7c00000-e7e00000 rw-p 00000000 00:00 0

    e7e00000-e8000000 rw-p 00000000 00:00 0

    e8000000-e8200000 rw-p 00000000 00:00 0

    e8200000-e8400000 rw-p 00000000 00:00 0

    e8400000-e8600000 rw-p 00000000 00:00 0

    e8600000-e8800000 rw-p 00000000 00:00 0

    e8800000-e8a00000 rw-p 00000000 00:00 0

    e8a00000-e8c00000 rw-p 00000000 00:00 0

    e8c00000-e8e00000 rw-p 00000000 00:00 0

    e8e00000-e9000000 rw-p 00000000 00:00 0

    e9000000-e9200000 rw-p 00000000 00:00 0

    e9200000-e9400000 rw-p 00000000 00:00 0

    e9400000-e9600000 rw-p 00000000 00:00 0

    e9600000-e9800000 rw-p 00000000 00:00 0

    e9800000-e9a00000 rw-p 00000000 00:00 0

    e9a00000-e9c00000 rw-p 00000000 00:00 0

    e9c00000-e9e00000 rw-p 00000000 00:00 0

    e9e00000-ea000000 rw-p 00000000 00:00 0

    ea000000-ea200000 rw-p 00000000 00:00 0

    ea200000-ea400000 rw-p 00000000 00:00 0

    ea400000-ea600000 rw-p 00000000 00:00 0

    ea600000-ea800000 rw-p 00000000 00:00 0

    ea800000-eaa00000 rw-p 00000000 00:00 0

    eaa00000-eac00000 rw-p 00000000 00:00 0

    eac00000-eae00000 rw-p 00000000 00:00 0

    eae00000-eb000000 rw-p 00000000 00:00 0

    eb000000-eb200000 rw-p 00000000 00:00 0

    eb200000-eb400000 rw-p 00000000 00:00 0

    eb400000-eb600000 rw-p 00000000 00:00 0

    eb600000-eb800000 rw-p 00000000 00:00 0

    eb800000-eba00000 rw-p 00000000 00:00 0

    eba00000-ebc00000 rw-p 00000000 00:00 0

    ebc00000-ebe00000 rw-p 00000000 00:00 0

    ebe00000-ec000000 rw-p 00000000 00:00 0

    ec000000-ec200000 rw-p 00000000 00:00 0

    ec200000-ec400000 rw-p 00000000 00:00 0

    ec400000-ec600000 rw-p 00000000 00:00 0

    ec600000-ec800000 rw-p 00000000 00:00 0

    ec800000-eca00000 rw-p 00000000 00:00 0

    eca00000-ecc00000 rw-p 00000000 00:00 0

    ecc00000-ece00000 rw-p 00000000 00:00 0

    ece00000-ed000000 rw-p 00000000 00:00 0

    ed000000-ed200000 rw-p 00000000 00:00 0

    ed200000-ed400000 rw-p 00000000 00:00 0

    ed400000-ed600000 rw-p 00000000 00:00 0

    ed600000-ed800000 rw-p 00000000 00:00 0

    ed800000-eda00000 rw-p 00000000 00:00 0

    eda00000-edc00000 rw-p 00000000 00:00 0

    edc00000-ede00000 rw-p 00000000 00:00 0

    ede00000-ee000000 rw-p 00000000 00:00 0

    ee000000-ee200000 rw-p 00000000 00:00 0

    ee200000-ee400000 rw-p 00000000 00:00 0

    ee400000-ee600000 rw-p 00000000 00:00 0

    ee600000-ee800000 rw-p 00000000 00:00 0

    ee800000-eea00000 rw-p 00000000 00:00 0

    eea00000-eec00000 rw-p 00000000 00:00 0

    eec00000-eee00000 rw-p 00000000 00:00 0

    eee00000-ef000000 rw-p 00000000 00:00 0

    ef000000-ef200000 rw-p 00000000 00:00 0

    ef200000-ef400000 rw-p 00000000 00:00 0

    ef400000-ef600000 rw-p 00000000 00:00 0

    ef600000-ef800000 rw-p 00000000 00:00 0

    ef800000-efa00000 rw-p 00000000 00:00 0

    efa00000-efc00000 rw-p 00000000 00:00 0

    efc00000-efe00000 rw-p 00000000 00:00 0

    efe00000-f0000000 rw-p 00000000 00:00 0

    f0000000-f0200000 rw-p 00000000 00:00 0

    f0200000-f0400000 rw-p 00000000 00:00 0

    f0400000-f0600000 rw-p 00000000 00:00 0

    f0600000-f06ff000 rw-p 00000000 00:00 0

    f06ff000-f0700000 ---p 00000000 00:00 0

    f0700000-f0800000 rw-p 00000000 00:00 0

    f0800000-f0a00000 rw-p 00000000 00:00 0

    f0a00000-f0c00000 rw-p 00000000 00:00 0

    f0c00000-f0e00000 rw-p 00000000 00:00 0

    f0e00000-f1000000 rw-p 00000000 00:00 0

    f1000000-f1200000 rw-p 00000000 00:00 0

    f1200000-f1400000 rw-p 00000000 00:00 0

    f1400000-f1600000 rw-p 00000000 00:00 0

    f1600000-f1800000 rw-p 00000000 00:00 0

    f1800000-f1a00000 rw-p 00000000 00:00 0

    f1a00000-f1c00000 rw-p 00000000 00:00 0

    f1c00000-f1e00000 rw-p 00000000 00:00 0

    f1e00000-f2000000 rw-p 00000000 00:00 0

    f2000000-f2200000 rw-p 00000000 00:00 0

    f2200000-f2400000 rw-p 00000000 00:00 0

    f2400000-f2600000 rw-p 00000000 00:00 0

    f2600000-f2800000 rw-p 00000000 00:00 0

    f2800000-f2a00000 rw-p 00000000 00:00 0

    f2a00000-f2c00000 rw-p 00000000 00:00 0

    f2c00000-f2e00000 rw-p 00000000 00:00 0

    f2e00000-f3000000 rw-p 00000000 00:00 0

    f3000000-f3200000 rw-p 00000000 00:00 0

    f3200000-f33ff000 rw-p 00000000 00:00 0

    f33ff000-f3400000 ---p 00000000 00:00 0

    f3400000-f3600000 rw-p 00000000 00:00 0

    f3600000-f3800000 rw-p 00000000 00:00 0

    f3800000-f38ff000 rw-p 00000000 00:00 0

    f38ff000-f3900000 ---p 00000000 00:00 0

    f3900000-f3a00000 rw-p 00000000 00:00 0

    f3a00000-f3c00000 rw-p 00000000 00:00 0

    f3c00000-f3e00000 rw-p 00000000 00:00 0

    f3e00000-f4000000 rw-p 00000000 00:00 0

    f4000000-f4200000 rw-p 00000000 00:00 0

    f4200000-f4400000 rw-p 00000000 00:00 0

    f4400000-f4600000 rw-p 00000000 00:00 0

    f4600000-f4800000 rw-p 00000000 00:00 0

    f4800000-f4a00000 rw-p 00000000 00:00 0

    f4a00000-f4c00000 rw-p 00000000 00:00 0

    f4c00000-f4e00000 rw-p 00000000 00:00 0

    f4e00000-f5000000 rw-p 00000000 00:00 0

    f5000000-f5200000 rw-p 00000000 00:00 0

    f5200000-f5400000 rw-p 00000000 00:00 0

    f5400000-f5600000 rw-p 00000000 00:00 0

    f5600000-f5800000 rw-p 00000000 00:00 0

    f5800000-f5a00000 rw-p 00000000 00:00 0

    f5a00000-f5c00000 rw-p 00000000 00:00 0

    f5c00000-f5e00000 rw-p 00000000 00:00 0

    f5e00000-f6000000 rw-p 00000000 00:00 0

    f6000000-f6200000 rw-p 00000000 00:00 0

    f6200000-f6400000 rw-p 00000000 00:00 0

    f6400000-f6600000 rw-p 00000000 00:00 0

    f6600000-f6800000 rw-p 00000000 00:00 0

    f6800000-f6a00000 rw-p 00000000 00:00 0

    f6a00000-f6c00000 rw-p 00000000 00:00 0

    f6c00000-f6e00000 rw-p 00000000 00:00 0

    f6e00000-f7000000 rw-p 00000000 00:00 0

    f7000000-f7200000 rw-p 00000000 00:00 0

    f7200000-f7300000 rw-p 00000000 00:00 0

    f7302000-f7306000 r-xp 00000000 09:02 24641560 /lib32/libnss_dns-2.11.2.so

    f7306000-f7307000 r--p 00004000 09:02 24641560 /lib32/libnss_dns-2.11.2.so

    f7307000-f7308000 rw-p 00005000 09:02 24641560 /lib32/libnss_dns-2.11.2.so

    f7312000-f7313000 ---p 00000000 00:00 0

    f7313000-f7323000 rw-p 00000000 00:00 0

    f7323000-f7324000 ---p 00000000 00:00 0

    f7324000-f7334000 rw-p 00000000 00:00 0

    f7334000-f7335000 ---p 00000000 00:00 0

    f7335000-f7345000 rw-p 00000000 00:00 0

    f7345000-f7346000 ---p 00000000 00:00 0

    f7346000-f7356000 rw-p 00000000 00:00 0

    f7356000-f7357000 ---p 00000000 00:00 0

    f7357000-f7367000 rw-p 00000000 00:00 0

    f7367000-f7368000 ---p 00000000 00:00 0

    f7368000-f747b000 rw-p 00000000 00:00 0

    f747b000-f75bb000 r-xp 00000000 09:02 24641546 /lib32/libc-2.11.2.so

    f75bb000-f75bc000 ---p 00140000 09:02 24641546 /lib32/libc-2.11.2.so

    f75bc000-f75be000 r--p 00140000 09:02 24641546 /lib32/libc-2.11.2.so

    f75be000-f75bf000 rw-p 00142000 09:02 24641546 /lib32/libc-2.11.2.so

    f75bf000-f75c2000 rw-p 00000000 00:00 0

    f75c2000-f75df000 r-xp 00000000 09:02 11536518 /usr/lib32/libgcc_s.so.1

    f75df000-f75e0000 rw-p 0001c000 09:02 11536518 /usr/lib32/libgcc_s.so.1

    f75e0000-f75e7000 r-xp 00000000 09:02 24641548 /lib32/librt-2.11.2.so

    f75e7000-f75e8000 r--p 00006000 09:02 24641548 /lib32/librt-2.11.2.so

    f75e8000-f75e9000 rw-p 00007000 09:02 24641548 /lib32/librt-2.11.2.so

    f75e9000-f75eb000 r-xp 00000000 09:02 24641545 /lib32/libdl-2.11.2.so

    f75eb000-f75ec000 r--p 00001000 09:02 24641545 /lib32/libdl-2.11.2.so

    f75ec000-f75ed000 rw-p 00002000 09:02 24641545 /lib32/libdl-2.11.2.so

    f75ed000-f7602000 r-xp 00000000 09:02 24641547 /lib32/libpthread-2.11.2.so

    f7602000-f7603000 r--p 00014000 09:02 24641547 /lib32/libpthread-2.11.2.so

    f7603000-f7604000 rw-p 00015000 09:02 24641547 /lib32/libpthread-2.11.2.so

    f7604000-f7606000 rw-p 00000000 00:00 0

    f7606000-f762a000 r-xp 00000000 09:02 24641555 /lib32/libm-2.11.2.so

    f762a000-f762b000 r--p 00023000 09:02 24641555 /lib32/libm-2.11.2.so

    f762b000-f762c000 rw-p 00024000 09:02 24641555 /lib32/libm-2.11.2.so

    f762c000-f762d000 rw-p 00000000 00:00 0

    f762d000-f7640000 r-xp 00000000 09:02 11536552 /usr/lib32/libz.so.1.2.3.4

    f7640000-f7641000 rw-p 00013000 09:02 11536552 /usr/lib32/libz.so.1.2.3.4

    f7641000-f772a000 r-xp 00000000 09:02 11536529 /usr/lib32/libstdc++.so.6.0.13

    f772a000-f772e000 r--p 000e9000 09:02 11536529 /usr/lib32/libstdc++.so.6.0.13

    f772e000-f772f000 rw-p 000ed000 09:02 11536529 /usr/lib32/libstdc++.so.6.0.13

    f772f000-f7736000 rw-p 00000000 00:00 0

    f773a000-f773c000 rw-p 00000000 00:00 0

    f773c000-f773d000 ---p 00000000 00:00 0

    f773d000-f7742000 rw-p 00000000 00:00 0

    f7742000-f7743000 r-xp 00000000 00:00 0 [vdso]

    f7743000-f775f000 r-xp 00000000 09:02 24641558 /lib32/ld-2.11.2.so

    f775f000-f7760000 r--p 0001b000 09:02 24641558 /lib32/ld-2.11.2.so

    f7760000-f7761000 rw-p 0001c000 09:02 24641558 /lib32/ld-2.11.2.so

    ff886000-ff9b8000 rw-p 00000000 00:00 0 [stack]

    Aborted (core dumped)

    WATCHDOG (13508): [Tue Jul 10 23:55:04 CEST 2012] Server died, waiting to restart...


  14. I'am searching for something like this:

    A sniper rifle weapon pack, inculding:

    Armalite AR-10 SASS (or similar e.g. Remington SASS)

    M40A5

    M24A3

    M39 EMR Mod 1

    Mk12 Mod 1

    Yeah, i know most of these are already available, BUT the clue is non of them has a NVG Scope.

    So, what would be nice is, if all these Weapons could get combined with a NVG Scope, SD, IR Laser, Rangefinder(?), 8x Scope and 12x Scope.

    A funny thing could be all these weapons with iron sights ^^ (or no sight)

    Well, the important thing would be the combination of NVG and SD, which is really rare on Sniper rifles out there...

×