Jump to content

wi77ard

Member
  • Content Count

    43
  • Joined

  • Last visited

  • Medals

Posts posted by wi77ard


  1. great

    *stops worrying*

    these are the best looking units i've ever seen for flashpoint, its just bloody fantastic there will be a set of SAS blokes released. I love the UKF stuff, but as of yet no SAS blokes released!!

    Would love to see some jungle and 95' pattern SAS blokes out there.

    On a slightly different note, although related .. if anyone knows there i can get some decent english camo faces please let me know .... desperately looking ..................


  2. great looking units, cant wait to get me hands on em.

    regarding the naming, i dont think it will be too much of an issue for anyone, everyone just seems to want them. However the way you have in your post seems fine to me.

    the bergens, are they useable? for example can u put stuff in them and can you drop the bergen. I know it was talked about in the previous posts, but not sure what finally happened.

    great work BB


  3. Quote[/b] ]I just run the OFP_Server.exe file, I keep it on and start the game

    if u have downloaded the basic 1.96 server and are running it without making a shortcut, then it will not be loading a config file

    make a shortcut adding this to the target line (found under properties) -config=sample.cfg

    this also applys on a dedicated server and needs to be done in the .bat file.


  4. thanks for response killswitch

    those four lines come from what i presume is something to do with the server restart function i have? its a file called ofpserverrestart

    we do use alot of addons, detecting which one might cause the problem sounds like a lengthly process. i have told the server company what you think the problem is, hopefully they will be able to sort it from here.........


  5. thanks for quick repsones

    heres a copy of the file

    <table border="0" align="center" width="95%" cellpadding="0" cellspacing="0"><tr><td>Code Sample </td></tr><tr><td id="CODE">#!/bin/bash

    #

    # ofpserver: Operation Flashpoint Linux dedicated server control script

    # (c) 2003 BIStudio

    # OFP binary version must be 1.92 or later!

    #

    #=======================================================================

    #======== CONFIGURATION PARAMETERS ========

    #======== MUST BE EDITED MANUALLY TO FIT YOUR SYSTEM PARAMETERS ========

    #=======================================================================

    OFP_DIR=/home/server-20/ofp

    CONFIG=${OFP_DIR}/server.cfg

    PORT=2302

    PIDFILE=${OFP_DIR}/ofp_server.${PORT}.pid

    RUNFILE=${OFP_DIR}/ofp_server.${PORT}.run

    LOGFILE=${OFP_DIR}/log.${PORT}.txt

    SERVER=${OFP_DIR}/server

    MODS="@ECP"

    #=======================================================================

    case "$1" in

    start)

    if [ -f ${RUNFILE} ]; then

    $0 stop

    fi

    echo "Starting OFP server..."

    # file to mark we want server running...

    echo "go" >${RUNFILE}

    # launch the background watchdog process to run the server

    nohup </dev/null >/dev/null $0 watchdog &

    ;;

    stop)

    echo "Stopping OFP server..."

    if [ -f ${RUNFILE} ]; then

    # ask watcher process to exit by deleting its runfile...

    rm -f ${RUNFILE}

    fi

    # and terminate OFP server process

    if [ -f ${PIDFILE} ]; then

    kill -TERM $(< ${PIDFILE})

    if [ -f ${PIDFILE} ]; then

    rm -f ${PIDFILE}

    fi

    fi

    ;;

    status)

    if [ -f ${RUNFILE} ]; then

    echo "Server should be running..."

    else

    echo "Server should not be running..."

    fi

    if [ -f ${PIDFILE} ]; then

    PID=$(< ${PIDFILE})

    echo "PID file exists (PID=${PID})..."

    if [ -f /proc/${PID}/cmdline ]; then

    echo "Server process seems to be running..."

    fi

    fi

    ;;

    check)

    echo -n "OFP directory: ${OFP_DIR} "

    if [ -d ${OFP_DIR} ]; then

    echo "OK"

    else

    echo "MISSING!"

    fi

    echo -n "Server executable: ${SERVER} "

    if [ -x ${SERVER} ]; then

    echo "OK"

    else

    echo "ERROR!"

    fi

    echo "Port number: ${PORT}"

    echo -n "Config file: ${CONFIG} "

    if [ -f ${CONFIG} ]; then

    echo "OK"

    else

    echo "MISSING!"

    fi

    echo "PID file: ${PIDFILE}"

    echo "RUN file: ${RUNFILE}"

    ;;

    restart)

    $0 stop

    $0 start

    ;;

    watchdog)

    # this is a background watchdog process. Do not start directly

    while [ -f ${RUNFILE} ]; do

    # launch the server...

    cd ${OFP_DIR}

    echo >>${LOGFILE} "WATCHDOG ($$): [$(date)] Starting server (port ${PORT})..."

    export LD_LIBRARY_PATH=${OFP_DIR}/libs

    ${SERVER} >>${LOGFILE} 2>&1 -server -config=${CONFIG} -port=${PORT} -pid=${PIDFILE} -mod=${MODS}

    if [ -f ${RUNFILE} ]; then

    echo >>${LOGFILE} "WATCHDOG ($$): [$(date)] Server died, waiting to restart..."

    sleep 5s

    else

    echo >>${LOGFILE} "WATCHDOG ($$): [$(date)] Server shutdown intentional, watchdog terminating"

    fi

    unset LD_LIBRARY_PATH

    done

    ;;

    *)

    echo "$0 (start|stop|restart|status|check)"

    ;;

    esac

    Quote[/b] ]Also, is "ftp access" the only kind of access you have to the server? If so, how or what issues the "batch" command ofpstart?. Have the hoster automated that somehow or are you not giving me all the details?

    dont know if i understand what ur getting at really, but the only access to the server i know that i have is through ftp and we can restart the server using a webpage.

    i'm not sure but this file looks like it might be involved?

    <table border="0" align="center" width="95%" cellpadding="0" cellspacing="0"><tr><td>Code Sample </td></tr><tr><td id="CODE">#!/bin/sh

    #

    # INX-Gaming.co.uk Game Switcher - Created By Aaron Taylor aka Moony1234

    # Copyright (c)2004-2006 All Rights Reserved.

    #

    # Easy Server Start Script

    #

    #

    home="/home"

    user="server-20"

    #

    # DO NOT MODIFY ANYTHING BELOW HERE

    #

    case "`id`" in

    uid=0\(root\)*)

    echo "$0: This script cannot be run as root!"

    exit 1

    esac

    cd $home/$user/ofp

    ./ofpserver stop > /dev/null 2>&1

    cd $home/$user/ofp

    ./ofpserver start > /dev/null 2>&1

    or perhaps this one lol

    <table border="0" align="center" width="95%" cellpadding="0" cellspacing="0"><tr><td>Code Sample </td></tr><tr><td id="CODE">/home/server-20/ofp/ofpserver stop

    /home/server-20/ofp/ofpserver stop

    /home/server-20/ofp/ofpserver stop

    /home/server-20/ofp/ofpserver start

    regarding the write access i'll ask the host company

    the reason i ask about windows server is coz we have run into problems using addons with the server too, we often have to open a missions .sqm file and define them before the server will accept it, and i understand from another post that this is a linux only issue.

    building my own server is appealing, but i dont know if i could manage it, this all seems a little over my head. We pay Å40 for our server at the moment, and although the lag is there, most maps are playable with upto 16 players, the really annoying thing is the random restarts. However if renting 'shelf space' wasnt overly priced, we'd be interested in learning more, know of anywhere offering such a service?

    cheers


  6. ok first off, i have ftp access to the flashpoint server, do u want me to post the file here so u can take a look?

    how would i know what has write access?

    would running the server on a windows based server help any?

    lastly, we are only a small clan and want hosting for 16 - 32 players, what spec of server would u recommend?


  7. and if u want realism

    22 SAS Regiment

    Scripted AI no longer do they stand doing nothing, they can hear, react and interact!

    Bergens that actually carry weaponry, but have litmits too.

    Stamina no longer can one man run the length of the island without breaking a sweat

    We have simple rank structure, are not regimented (no salutes), train hard, play lots ......... also no respawn


  8. Net speed = 100mbit

    flashpoint.cfg...

    Light_Explo=1;

    Cloudlets=1;

    Cockpit_Textures=2048;

    Limit_LOD=0.019000;

    CPU_Benchmark=1145;

    3D_Performance=1145;

    Frame_Rate_Pref=500;

    VehShadows=1;

    File_Heap=8;

    Object_Textures=2048;

    HW_Type="Direct3D";

    MaxObjects=256;

    Shadows=0;

    Language="English";

    Quality_Pref=500;

    Resolution_W=1024;

    Adapter=0;

    Texture_Heap=8;

    Resolution_Bpp=16;

    Resolution_H=768;

    Reflections=1;

    MaxLights=12;

    Sky=1;

    Animated_Textures=128;

    Light_Missile=1;

    Landscape_Textures=2048;

    Textures_Drop_Down=4;

    Shadows_LOD=0.050000;

    LOD=7.500000;

    Total_Memory="128 MB";

    Light_Static=1;

    Product="Resistance";

    refresh=75;

    Server specs = dual amd mp, 2gb ddr

    Fedora Core

    Batch command = ./ofpserver start [nice and simple]


  9. hi

    i am renting a server and the server is laggy at times, the server company says

    Quote[/b] ]It restarts totally randomly, but the problem is it doesnt kill the previous process, which eventually causes it to loop due to the port being in use.

    this is an output it produces

    <table border="0" align="center" width="95%" cellpadding="0" cellspacing="0"><tr><td>Code Sample </td></tr><tr><td id="CODE">WATCHDOG (5875): [Thu May 5 11:20:01 BST 2005] Server shutdown intentional, watchdog terminating

    WATCHDOG (5892): [Thu May 5 11:20:01 BST 2005] Starting server (port 2302)...

    11:20:01 Dedicated server created, memory used: 7040 KB

    Operation Flashpoint Console version 1.96: port 2302 - Sockets

    11:20:03 Server identity created

    WATCHDOG (5892): [Thu May 5 11:20:20 BST 2005] Server shutdown intentional, watchdog terminating

    WATCHDOG (5909): [Thu May 5 11:20:20 BST 2005] Starting server (port 2302)...

    11:20:20 Dedicated server created, memory used: 7040 KB

    what does this mean? and can it be fixed?

    please help


  10. this script is great, i have used it in SP lots and it makes for a much better mission. I am trying to get it working in MP, it works to an extent, but only shows the stamina and skill of other members of your squad, but does work for all players including the leader of the group.

    Is there some way someone could make this work for a single unit? i would like it to simply do exactly the same thing, but also the addition of when the stamina is right down it slowly reduces the health of the player, and it would then detect when the player is stopped and / or sitting down and then slowly recover the stamina, but not the health. Is this possible???

    Thanks for help in advance .....


  11. thanks for reply

    yeh both server and client are using same version of UK forces addons and the mission i am trying to test them with is basicly one man (uk forces) placed on desert island map with nothing else.

    the path to the XML iin ofp profile is exactly as written in first post. This should work as far as i know, but doesnt. Definatly no spaces before or after either.

    any other thoughts?

    cheers


  12. hiya

    we are renting a server from inx-gaming.co.uk which is great, but they are new to hosting flashpoint and we are new to linux servers.

    What we would like is to use the @ECP mod and a few other addons which are in use within our clan.

    We want to use the UK forces infantry and CoC artillery. We have got it so that we can play normal resistance and coldwar missions, and the server shows and requires @ECP.

    @ECP works and produces the spectating script on death, but the UK forces addons dont seem to be working, whenever we load a mission using these addons, it automatically sends us back to the mission selection screen.

    I have tried copying over the UK forces addons to the res folder on the server and ensuring they are all lower case, still nothing ... ..

    any ideas??

    Also our xml isnt working ingame

    not sure why

    the link is

    here

    thanks for your help in advance

×