Jump to content

[lol]clan killer bee

Member
  • Content Count

    125
  • Joined

  • Last visited

  • Medals

Posts posted by [lol]clan killer bee


  1. Hello all,

    I hope I'm on the right track now !

    I have been sent by mr shepard :P

    I wanted too ask if someone has a problem with the arma3sync and fail errors like the one I ran into.

    I have been looking on the net for a solution or my searching is bad ( don't even answer that ! ). or it is a not know or well documented problem.

    Like I said, I tried to make a repository and all works fine it get seen the config works even when I update it get shown all the addons do get seen.

    Accept this pain in the neck error I got when I download the files.

    Pic:

    http://oi58.tinypic.com/281f1mq.jpg

    http://oi62.tinypic.com/19xgus.jpg

    I had more of them but I got some of the reading out of the AIA_TP mod and that saved me a really big list of errors.

    Still I do get the same errors with the CBA mod ( as this also contains the .ccp and the .txt file.

    This is what I have tested sofar.

    1: Dowload them and reinstall

    2: Updated it mp times.

    3: Uploaded different times

    4: Got the same addons from another repository that worked.

    5: Shutdown AV

    6: Did the same on my laptop, maybe there was something on the background running, same result.

    Yes I did the step by step from this site also !

    http://www.sonsofexiled.fr/wiki/index.php/ArmA3Sync_Wiki_English#Use_as_a_server_administrator

    Spent multiple days try to search to fix it , but going now slowly, how the call it in english ?

    Apeshit !!!

    I haven't find a tut on youtube eighter about making a proper repository, only how to set it up for gaming or getting the mods not hosting them.

    Hint ! :P

    I might have missed something but not sure.

    Like check a box or so ?

    Not that I have read that in the explantion of the website.

    I hope someone has the key to my problem!

    With regards,

    KillerBee

    ---------- Post added at 09:06 ---------- Previous post was at 08:35 ----------

    I just have downloaded the lastest version of Arma3sync and installed it.

    ftp://62.210.177.238/ArmA3/ArmA3Sync...ler-1-4-55.exe

    Still have problem with the same files.

    http://oi60.tinypic.com/28162dh.jpg

    http://oi57.tinypic.com/2r2adl5.jpg

    Again the same files !


  2. Like Zapper and Jgaz said, DITO !

    I still run a server at the moment

    http://www.nakedsquid.com/

    I have tried to run the 1.99 version and than I had he CWA from steam and it didn't like it to much with the lose CWA, not sure others have the same problems I had or did.

    Like Rożek said, make a full package with all the fixed and documentation that would be nice and compatible.

    That would make lots of peeps happy I think. :o


  3. Hi guys still editing here on a mission but I still gonna need some more info !

    I wanted to place a object in the water in this case the

      	Land_Pier_small_F

    I created a invisible helipad and in the init I had placed this code

    piersmall= "Land_Pier_small_F" createVehicle position this; deleteVehicle this;

    All good and all fine (not sure if this also works in MP )

    The problem that I ran into was that the object didn't aline to the beach and straight into the water.

    I did set the hight of the object with alt position and such but the pier did stand in a angle diapering into the water. :j:

    I also tried these:

    https://community.bistudio.com/wiki/surfaceNormal

    https://community.bistudio.com/wiki/surfaceIsWater

    https://community.bistudio.com/wiki/surfaceType

    None seemed to help !

    I might have overlooked something or missed someting.

    Does someone know how to fix this problem ?

    With regards,

    KillerBee

    ---------- Post added at 21:26 ---------- Previous post was at 21:15 ----------

    Okay by accident I had hit a space and the code wasn't implemented right.

    I got it straght on from the shore into the water by this !

    piersmall= "Land_Pier_small_F" createVehicle position this; deleteVehicle this; piersmall setVectorUp [0,0,40];

    I had to set it to 40.

    Other problem did rise up.

    I needed to turn the pier a little like 45 degrees arround the axis.

    I triedt to implement it the first 0 and the second 0 but result was

    1: the pier tilled to the left or right

    2: the pier tiled up and down in the specific amount of angle being given in.

    Question how to turn the pier ?

    In the mean time I had a pm form someone and I got the direction solved with the command

    _soldier1 setDir 45 

    Problem still is that the object get lower in the water when I replace the object more to the sea it doesn't stay the same hight?

    Okay this is 10 min later and I solved the darn problem.

    This is what I had to do to fix it !

    SOLVED

    TO solve my problem I got this in the init:

    piersmall= "Land_Pier_small_F" createVehicle position this; deleteVehicle this; piersmall setVectorUp [0,0,40]; piersmall setDir 78; piersmall setPos [getPos this select 0, getPos this select 1, 1.1]

    Not sure this does work for MP yet !

    Hope this can help someone else !


  4. Thank you for the support guys, I gonna take a look at it the coming days, Christmas shopping and such.

    Will take a look at is as fast as possible !

    Forgot to place this LOL

    Make the sub in the initServer.sqf (search for Arma 3 Event Scripts), and use BIS_fnc_MP for the bubbles, problems should be solved.

    I'm not script person, will try though, always want to learn something if I got the change, so no guarantees.

    ---------- Post added at 23:21 ---------- Previous post was at 21:41 ----------

    Holy something this is all new to me !

    Use to make a lot of mission in OFP at the time :p

    So far I have tested the Sub and is seems to work with the

    initServer.sqf

    Now after reading the Event script page I see this also these optoins.

     
    initServer.sqf is executed (server only)
    initPlayerLocal.sqf is executed
    initPlayerServer.sqf is executed (server only)
    

    Now as I just had it on MP by myself I wonder what if a JIPPer got in does it generate it the sub again or is the one at the start been seen and not done again, or does it get seen when it was .

    When do I use the player local and when the Jip compatible ?


  5. Well seems I have cheered a little too hard !

    Just got it running on a dedicated server and it went bonkers !

    First off all no bubbles. :(

    Second It created with 2 peeps a very fast version of the sub !

    http://oi60.tinypic.com/2mmhi4l.jpg (217 kB)

    I might need this on the init.sqf, but not sure ?

    //---JIP Check (This code should be placed first line of init.sqf file)
    if (!isServer && isNull player) then {isJIP=true;} else {isJIP=false;};
    
    // Wait until player is initialized
    if (!isDedicated) then {waitUntil {!isNull player && isPlayer player};};
    

    This might atleast prevent the multiple copy of the one sub.

    The bubbles I have no idea why it is not working in MP ?:j:


  6. Well got it to work !

    I had to change the script to:

    if (!isDedicated) then {
    _plankton = "#particlesource" createVehicleLocal (position mySub);
    _plankton setParticleClass "PointBubbles1";
    _plankton attachto [mySub,[0,2,1.3]];};

    Took me a while to find the name for the bubble (s)

    Need to find out how to make a little less bubs and on more spots !

    Need too look of I need to change this in the code:

    [mySub,[0,2,1.3]]

    or see if there is another PointBubbles1 like PointBubbles2 or maybe PointBubbles3

    Here is a pic of the bubbles

    http://oi59.tinypic.com/eafakm.jpg (639 kB) ;)


  7. Thank you guy a lot, got it to work SP (editor) need to see if it works in MP.

    Like I said thank you for the help !

    Two thumb up, one subdown.

    ---------- Post added at 13:04 ---------- Previous post was at 13:03 ----------

    This might be weird too ask but does anyone know how you can add some bubble to the sub like you do with the diver.

    Some times just a few bubbles ?


  8. Thanks for the reply,

    I have added to mine line like this

    _veh = createVehicle ["Submarine_01_F", [getMarkerPos "Sub" select 0,getMarkerPos "Sub" select 1, -40], [], 0, "NONE"]; this setMass 10;

    Sub still raises up too the surface :mad:

    Is this not a code that you put in the init of the object you place on the map and given a name ?

    This sub needs too spawn first or do I misunderstood you ?


  9. Thank you Greenfist for the reply.

    Hmm I'm don't not know that much of scripting but if I wanted to check shouldn't I give the created object a name ( Like Sub1 ) when it is created and how and were do I place that in my script ?

    If not and I would have to add the mass code were do I have to place it in mine code for it to work ?


  10. Hello communityl,

    I have a idea for a mission with a submarine witch has to stay static.

    I found that there is the Submarine_01_F this is a Civilian Sub.

    I got it to spawn with this code:

    _veh = createVehicle ["Submarine_01_F", [getMarkerPos "Sub" select 0,getMarkerPos "Sub" select 1, -40], [], 0, "NONE"];

    This is a invisible Helipad and added a marker called Sub.

    The Sub spawns and also on the depth, problem is though that he start to go up and float at the surface.

    Is there anyone who has a idea or know how to fix this ? :j:

    Thank you.

    Ps if this has already been asked sorry I did a search for it, but didn't find anything bout this yet.


  11. Hi guys, I have searched for this problem but there was no hit on it so here is my question !

    I want to setfufel form a car and the ammo !

    I used the init field of the car and in the editor it works fine.

    This is the code

    enemy3 setfuel 0.005;enemy3 setVehicleAmmo 0.1 

    When used on a dedicated server it fails accept the ammo part that does work

    I found out that if you make a car.sqf and add the line in and activated it by this

    nul = execVM "car1.sqf";

    It works fine also on dedicated.

    I need to get this script working for 3 vehicles what command do I need use instead only the name (enemy3) of the car so it works for all 3 cars that run the

    nul = execVM "car1.sqf";

    propperly for all cars who get the code in the init field ?

    Tried already _vehicle and _vehicle = vehicle and _x ?

    Or do I need to make 3 separate scripts ?

    Thank you !


  12. Okay !

    So I understand this is notmally a writting script but is ussed for a .paa on the moment.

    Still I need to know how to add more .paa's

    I want atleast 3

    mission,MadKiller,lol

    If I do it I get errors all the time ?

    Don't know what I'm doing wrong ?

    Problem is also I'm dislectic as hell so that doesn't help.

    This is what I got !

    
    
    class RscTitles
    {
    titles[] = {"mission","madkiller", "lol"}; 
    
    class mission {
      idd = -1;
      movingEnable = 0;
      duration = 10;  
      fadein = 2;
      fadeout = 2;
      name="mission";
    
      controls[]={"Picture"};
    
      class Picture {
        x=0.0; y=0.0; w=1.0; h=1.0;
        text="mission.paa";
        sizeEx = -1;
        type=0;
        idc=-1;
        style=48;
        colorBackground[]={0,0,0,0};
        colorText[]={1,1,1,1};
        font="Bitstream";
      };
    {
    
    
    class madkiller {
      idd = -1;
      movingEnable = 0;
      duration = 10;  
      fadein = 2;
      fadeout = 2;
      name="madkiller";
    
      controls[]={"Picture"};
    
      class Picture {
        x=0.0; y=0.0; w=1.0; h=1.0;
        text="madkiller.paa";
        sizeEx = -1;
        type=0;
        idc=-1;
        style=48;
        colorBackground[]={0,0,0,0};
        colorText[]={1,1,1,1};
        font="Bitstream";
      };
    {
    
    class lol {
      idd = -1;
      movingEnable = 0;
      duration = 10;  
      fadein = 2;
      fadeout = 2;
      name="lol";
    
      controls[]={"Picture"};
    
      class Picture {
        x=0.0; y=0.0; w=1.0; h=1.0;
        text="lol.paa";
        sizeEx = -1;
        type=0;
        idc=-1;
        style=48;
        colorBackground[]={0,0,0,0};
        colorText[]={1,1,1,1};
        font="Bitstream";
      };
    };
    };


  13. Hi guys I was wondering what kind of parameters are out there and some info.

    I'm looking for a intro parameter for in my mission but than I have been told that this has issues with AO.

    Anyone who can tell me more.

    Also I have heard that there are problems with peeps joining in game with this stuff is that true ?

    What kind of parameters ?

    AI skills

    Time

    Weather

    Fog

    And what are the init instrucktions and descriptions ?

    Do you have more ?:rolleyes:

    Thanks KillerBee


  14. Ello I was just wondering about 2 things !

    1: How do I add a second to this object here?, I got everytime errors with } and such. ( no I'm not a scriptkiddy )

    I think or I misplace it or miss one but witch one ?

    class RscTitles
    {
    titles[] = {"LDDK"}; 
    
    class LDDK {
      idd = -1;
      movingEnable = 0;
      duration = 10;  
      fadein = 2;
      fadeout = 2;
      name="LDDK";
    
      controls[]={"Picture"};
    
      class Picture {
        x=0.0; y=0.0; w=1.0; h=1.0;
        text="lddk.paa";
        sizeEx = -1;
        type=0;
        idc=-1;
        style=48;
        colorBackground[]={0,0,0,0};
        colorText[]={1,1,1,1};
        font="Bitstream";
      };
    };
    };

    2: What does this mean !

    sizeEx = -1;

    Thank you for the time and the help

    Greetz KillerBee ! :bounce3:


  15. I have to specifie here but how far is that ?

    w=0.2944; h=0.32;
    

    Max size is 1 ?

    Like this ?

    w=01.0; h=1.0;
    

    ? :rolleyes:

    ---------- Post added at 10:46 PM ---------- Previous post was at 10:28 PM ----------

    Okay that works even better than I thought.

    I.m edditing in a different res and the .paa is in the middle.

    I'm putting the screen to my original size screen and the pic is the right size but is not in the middle it is more to the bottom and partly to the richt out of the screen !

    Is there a way for to get it in the middle ?

    Like a standaard size and with and middle for screen .

    Ooops I know the original that is the width on 1.0 and the hight to on 1.0

    Can't figure out he middle of the screen

    ---------- Post added at 10:58 PM ---------- Previous post was at 10:46 PM ----------

    SOLVED the problem

    This is what you need to do.

    class RscTitles
    {
    titles[] = {"LDDK"}; 
    
    class LDDK {
      idd = -1;
      movingEnable = 0;
      duration = 6;  
      fadein = 2;
      fadeout = 2;
      name="LDDK";
    
      controls[]={"Picture"};
    
      class Picture {
        x=0.0; y=0.0; w=1.0; h=1.0;
        text="lddk.paa";
        sizeEx = -1;
        type=0;
        idc=-1;
        style=48;
        colorBackground[]={0,0,0,0};
        colorText[]={1,1,1,1};
        font="Bitstream";
      };
    };
    };

    These 2 with these settings are in the middle of the screen.

    x=0.0; y=0.0

    These 2 will change the size of the picture that wil been shown

    w=1.0; h=1.0;

    To make it half the size make it.

    w=0.5; h=0.5;

    Thank you all for the help sofar !:yay::bounce3:

    Sometimes a old wagon needs a little push !

  16. Hi guys.

    I use to make missions for the clan in ofp !

    Lately I have started it with ARMA2.

    Finding out a lot os the stuff that doesn't work or diferent.

    This is the problem.

    I use to make .paa for ofp.

    When you had a picture size 128 x 128 it was smaller than the 512 x 512 and it all worked.

    NoyI had a pic that was 256 x 256 form the olf ofp and wanted to use it.

    Drop it in the mission edit the discription and start it .

    Behold it is to small I make a bigger version like 1024 x 1024 looks nice drop it restart the game and what do I see !

    Still a small size !

    How kan I solve this ?

    Thank you !

    This is the code in the description !

    class RscTitles
    {
    titles[] = {"LDDK"}; 
    
    class LDDK {
      idd = -1;
      movingEnable = 0;
      duration = 6;  
      fadein = 2;
      fadeout = 2;
      name="LDDK";
    
      controls[]={"Picture"};
    
      class Picture {
        x=0.36; y=0.4; w=0.2944; h=0.32;
        text="lddk.paa";
        sizeEx = -1;
        type=0;
        idc=-1;
        style=48;
        colorBackground[]={0,0,0,0};
        colorText[]={1,1,1,1};
        font="Bitstream";
      };
    };
    };


  17. Your right it is the rsc and it worked.

    Also the stuff that was in the discription.ext was a small error.

    I ran into a mission that had it running.

    Copy and pasted it.

    Problem that I have now is that it works only the logo I want has also transparent partly.

    I have the keytegs tool for photoshop and textview 2 only it doesn't make sense to me how to save it and convert it and how I do it in photoshop !

    Someone has a tutorial for me ?:p

×