PW Server Files 1.5.1 v101

Page 18 of 53 FirstFirst ... 8101112131415161718192021222324252628 ... LastLast
Results 256 to 270 of 788
  1. #256
    Account Upgraded | Title Enabled! NoName123456 is offline
    MemberRank
    Nov 2013 Join Date
    213Posts

    Re: PW Server Files 1.5.1 v101

    Quote Originally Posted by sora1984 View Post
    http://forum.ragezone.com/f452/compl...ackage-736572/

    Maybe you should start there and learn about the server 1st pw development isn't for everyone

    Thank you for your reply, keep that for you tho, I got an aim to hit(beside: I already did that realse and edited every thing and gear in it.) so iam ok with that. You told me to import the client gshop.data into the SGedit and i did and then i exported it into a server 144 gshop.data, I then used winscp to import that file into the home/gamed/config, I restarted pw and still your client version is too old.

    Any other idea?

  2. #257
    RaGEZONER fgru is offline
    MemberRank
    Sep 2009 Join Date
    germanyLocation
    1,510Posts

    Re: PW Server Files 1.5.1 v101

    client version is too old > http://forum.ragezone.com/f753/typical-error-helping-hand-836410/

  3. #258
    0, 1, 1, 2, 3, 5, 8, 13, argonaut is offline
    MemberRank
    Sep 2011 Join Date
    AustraliaLocation
    602Posts

    Re: PW Server Files 1.5.1 v101

    Works Great, ty.

  4. #259
    .#!/bin/bash sora1984 is offline
    MemberRank
    Feb 2011 Join Date
    127.0.0.1Location
    387Posts

    Re: PW Server Files 1.5.1 v101

    is it that hard to figure out with the amount of posts on this forum?

    its empty !
    Attached Files Attached Files

  5. #260
    RaGEZONER fgru is offline
    MemberRank
    Sep 2009 Join Date
    germanyLocation
    1,510Posts

    Re: PW Server Files 1.5.1 v101

    ot
    yes its very hard and we are the stupid ppl with " plz search " posts xD xD xD the new user hate us xD xD xD but thats life xD xD xD
    /ot

  6. #261
    Account Upgraded | Title Enabled! elche27 is offline
    MemberRank
    Dec 2004 Join Date
    TucumanLocation
    302Posts

    ! Re: PW Server Files 1.5.1 v101

    Hello Comunity,
    I have a problem and i hope you really can help me. I already read several time this topic but i cant figure out the solution...plus this is the second time i up a PW server. Well get into the trouble "Cant log into server" issue if i use elemntclient.bat and "low version" if i use launcher. Here is my steps.

    For low version error, i read Mrfgru telling that is a:
    wrong gshop.data or gshop1.data [ client ]
    wrong gshopsev.data or gshopsev1.data [ sever ]

    ¿How i know if this my case? and if is, ¿can you share this file to this version?
    Because i used "emptygshop.rar" and dont work (if i must edited, yet dont know how)
    i copy on server "gshopsev.data" and "gshopsev1.data" from the llast client of PWS i use but still no effect!

    Data on console after the error



    Is the orange color correct on server list?


    Here is my server.sh
    PHP Code:
    #!/bin/bash

    ServerDir=home
    GsLogFileDir
    =$ServerDir
    GsLogFileName
    =GameService_Log

    txtnrm
    ='\e[0;0m'  # Normal
    txtred='\e[0;31m' # Red
    txtgrn='\e[0;32m' # Green

    Server::Start()
    {
    if [ ! -
    /$ServerDir/logs/starting ]; then
    mkdir 
    /$ServerDir/logs/
    mkdir /$ServerDir/logs/starting
    fi
    echo -"=== [${txtred} START ${txtnrm}] Log Service ==="
    cd /$ServerDir/logservice; ./logservice logservice.conf > /$ServerDir/logs/starting/logservice.log &
    sleep 3
    echo -"=== [${txtgrn} OK ${txtnrm}] ==="
    echo -""

    echo -"=== [${txtred} START ${txtnrm}] Unique Name ==="
    cd /$ServerDir/uniquenamed; ./uniquenamed gamesys.conf > /$ServerDir/logs/starting/uniquenamed.log &
    sleep 3
    echo -"=== [${txtgrn} OK ${txtnrm}] ==="
    echo -""

    echo -"=== [${txtred} START ${txtnrm}] Auth ==="
    cd /$ServerDir/auth/build; ./authd.sh start &
    sleep 5
    echo -"=== [${txtgrn} OK ${txtnrm}] ==="
    echo -""

    echo -"=== [${txtred} START ${txtnrm}] Data Base ==="
    cd /$ServerDir/gamedbd; ./gamedbd gamesys.conf > /$ServerDir/logs/starting/gamedbd.log &
    sleep 10
    echo -"=== [${txtgrn} OK ${txtnrm}] ==="
    echo -""

    echo -"=== [${txtred} START ${txtnrm}] Anti Cheat ==="
    cd /$ServerDir/gacd; ./gacd gamesys.conf > /$ServerDir/logs/starting/gacd.log &
    sleep 5
    echo -"=== [${txtgrn} OK ${txtnrm}] ==="
    echo -""

    echo -"=== [${txtred} START ${txtnrm}] Faction ==="
    cd /$ServerDir/gfactiond; ./gfactiond gamesys.conf > /$ServerDir/logs/starting/gfactiond.log &
    sleep 7
    echo -"=== [${txtgrn} OK ${txtnrm}] ==="
    echo -""

    echo -"=== [${txtred} START ${txtnrm}] Delivery ==="
    cd /$ServerDir/gdeliveryd; ./gdeliveryd gamesys.conf > /$ServerDir/logs/starting/gdeliveryd.log &
    sleep 5
    echo -"=== [${txtgrn} OK ${txtnrm}] ==="
    echo -""

    echo -"=== [${txtred} START ${txtnrm}] Link ==="
    cd /$ServerDir/glinkd; ./glinkd gamesys.conf 1 > /$ServerDir/logs/starting/glink.log &
    cd /$ServerDir/glinkd; ./glinkd gamesys.conf 2 > /$ServerDir/logs/starting/glink2.log &
    cd /$ServerDir/glinkd; ./glinkd gamesys.conf 3 > /$ServerDir/logs/starting/glink3.log &
    cd /$ServerDir/glinkd; ./glinkd gamesys.conf 4 > /$ServerDir/logs/starting/glink4.log &
    sleep 8
    echo -"=== [${txtgrn} OK ${txtnrm}] ==="
    echo -""

    echo -"=== [${txtred} START ${txtnrm}] Game Service ==="
    cd /$ServerDir/gamed; ./gs gs62 > /$ServerDir/logs/starting/gs62.log &
    sleep 30
    echo -"=== [${txtgrn} OK ${txtnrm}] ==="
    }

    Server::Stop()
    {

    echo -
    "[${txtgrn} OK ${txtnrm}] Stop Log Service"
    pkill -9 logservices
    sleep 2
    echo -"[${txtgrn} OK ${txtnrm}] Stop Link"
    pkill -9 glinkd
    sleep 15
    echo -"[${txtgrn} OK ${txtnrm}] Stop Auth"
    pkill -9 authd
    sleep 3
    echo -"[${txtgrn} OK ${txtnrm}] Stop Delivery"
    pkill -9 gdeliveryd
    sleep 2
    echo -"[${txtgrn} OK ${txtnrm}] Stop Anti Cheat"
    pkill -9 gacd
    sleep 2
    echo -"[${txtgrn} OK ${txtnrm}] Stop Game Service"
    pkill -9 gs
    sleep 2
    echo -"[${txtgrn} OK ${txtnrm}] Stop Faction"
    pkill -9 gfactiond
    sleep 2
    echo -"[${txtgrn} OK ${txtnrm}] Stop Unique Name"
    pkill -9 uniquenamed
    sleep 2
    echo -"[${txtgrn} OK ${txtnrm}] Stop Data Base"
    pkill -9 gamedbd
    sleep 2
    echo -"[${txtgrn} OK ${txtnrm}] Stop Java"
    pkill -9 java
    sleep 3
    }

    PARAM_STR=$1
        
    if [ -"$PARAM_STR]; then
            
    if [ "$PARAM_STR== "start" ]; then
                Server
    ::Start
            elif 
    "$PARAM_STR== "stop" ]; then
                Server
    ::Stop
            elif 
    "$PARAM_STR== "restart" ]; then
                Server
    ::Stop
                
    echo ""
                
    Server::Start
            elif 
    "$PARAM_STR== "getlog" ]; then
            cd 
    /$ServerDir/gamed; ./gs log > /$GsLogFileDir/$GsLogFileName.txt
            
    echo -"[${txtgrn} OK ${txtnrm}] Getting Logs. Path To Log File: /${GsLogFileDir}/${GsLogFileName}.txt"
        
    fi;
    fi;
    exit 

    If you need more details, please ask me and ill put it here.
    Ill try to search more but if some1 can help me..it will be great!
    My regards!!
    Last edited by elche27; 09-03-14 at 10:34 AM.

  7. #262
    Apprentice wolf9653 is offline
    MemberRank
    Nov 2011 Join Date
    South AfricaLocation
    10Posts

    Re: PW Server Files 1.5.1 v101

    Hello elche27 are your maps running? For new character the new starting area (IS62 ) must be started. You can try this gshop that I am using http://www.mediafire.com/download/hq...bgkyq/gshop.7z . Just copy to server and to client then restart server and see if it works.
    Last edited by wolf9653; 09-03-14 at 10:35 AM.

  8. #263
    Account Upgraded | Title Enabled! elche27 is offline
    MemberRank
    Dec 2004 Join Date
    TucumanLocation
    302Posts

    Re: PW Server Files 1.5.1 v101

    Thank you for your reply Mr wolf

    - IS62 is edited on service file
    - Really dont know if my maps are running (sry im still noob in this server files Y_Y) ¿how i check that Mr wolf?
    - Gshops:
    Server side i pasted on folder home/gamed/config
    gshopsev
    gshopsev1

    Client Side i pasted on folder element/data
    gshop
    gshop1

    them ./server start....i think is running ok
    but still cant log with bat file and low version with launcher...

  9. #264
    Apprentice wolf9653 is offline
    MemberRank
    Nov 2011 Join Date
    South AfricaLocation
    10Posts

    Re: PW Server Files 1.5.1 v101

    elche27 you can use pwAdmin to check if everything is running. I use this one by DaMadBoy http://www.triallion.co.uk/downloads...wAdmin_148.zip .

    Password for it is ROOT. Then go to the server control link. Everything should be green there.
    You can also start and stop maps using this.

    Just make sure you configure the file in (WEB-INF/.pwadminconf.jsp) to match your server settings. Pwadmin goes into your tomcat webapps folder.

  10. #265
    Account Upgraded | Title Enabled! elche27 is offline
    MemberRank
    Dec 2004 Join Date
    TucumanLocation
    302Posts

    big grin Re: PW Server Files 1.5.1 v101

    Quote Originally Posted by wolf9653 View Post
    elche27 you can use pwAdmin to check if everything is running. I use this one by DaMadBoy http://www.triallion.co.uk/downloads...wAdmin_148.zip .

    Password for it is ROOT. Then go to the server control link. Everything should be green there.
    You can also start and stop maps using this.

    Just make sure you configure the file in (WEB-INF/.pwadminconf.jsp) to match your server settings. Pwadmin goes into your tomcat webapps folder.
    Thank you very much Mr Wolf!! After 24 hs and your help could pull together, but i suppose this is the easy part...i can enter with bat file and no with launcher coz "low version error"...after sleep ill check gshop guides to can log with launcher....have any link to gshop edit?
    Thank you very much again! and my best Regards!

    here the proof XD

  11. #266
    Valued Member Latyos is offline
    MemberRank
    Jul 2011 Join Date
    132Posts

    Re: PW Server Files 1.5.1 v101

    Quote Originally Posted by wolf9653 View Post
    elche27 you can use pwAdmin to check if everything is running. I use this one by DaMadBoy http://www.triallion.co.uk/downloads...wAdmin_148.zip .

    Password for it is ROOT. Then go to the server control link. Everything should be green there.
    You can also start and stop maps using this.

    Just make sure you configure the file in (WEB-INF/.pwadminconf.jsp) to match your server settings. Pwadmin goes into your tomcat webapps folder.
    Code:
    echo -e "=== [${txtred} START ${txtnrm}] Game Service ==="
    cd /$ServerDir/gamed; ./gs gs01 > /$ServerDir/logs/starting/gs01.log &
    sleep 15
    ./gs is62 > /$ServerDir/logs/starting/is62.log &
    sleep 30
    echo -e "=== [${txtgrn} OK ${txtnrm}] ==="
    }
    or can edit Game Service lines in your starter script and you dont have to deal with go pwadmin and start map etc.

  12. #267
    Apprentice wolf9653 is offline
    MemberRank
    Nov 2011 Join Date
    South AfricaLocation
    10Posts

    Re: PW Server Files 1.5.1 v101

    Quote Originally Posted by elche27 View Post
    Thank you very much Mr Wolf!! After 24 hs and your help could pull together, but i suppose this is the easy part...i can enter with bat file and no with launcher coz "low version error"...after sleep ill check gshop guides to can log with launcher....have any link to gshop edit?
    Thank you very much again! and my best Regards!

    here the proof XD
    Your welcome elche27. As for the gshop editor, http://pw-tools.googlecode.com/svn/trunk/ .

  13. #268
    TheOne jaguar666 is offline
    MemberRank
    Aug 2012 Join Date
    Comfort RoomLocation
    407Posts

    Re: PW Server Files 1.5.1 v101

    Quote Originally Posted by wolf9653 View Post
    Your welcome elche27. As for the gshop editor, http://pw-tools.googlecode.com/svn/trunk/ .
    Please pack your editor into a 1 file.

  14. #269
    Account Upgraded | Title Enabled! elche27 is offline
    MemberRank
    Dec 2004 Join Date
    TucumanLocation
    302Posts

    Support Re: PW Server Files 1.5.1 v101

    Hello Again,
    I need a hand again -.- because im confuse in this one! i have my pwAdmin working on /usr/local/jakarta....some parts works and other not...better check image to know what i say

    Here you can see how the web can see wich app are on, even more, i can up maps from here



    In this part i can see my server ooff(when is on) and i cant edit the exp rate from my server...


    Here where the thing goes crazy, i can see my user db but i cant connect to mysql when i create an account????


    Character Tab is BLANK. cant see my character and the addon no1 works!!

    Yes, i doubled check .pwadminconf but maybe i missed something...really dont know -.-


    Other ask - if you want answer one or all of them of course >_>

    - Where o how i can edit DB all stuff like level, class, and the rest(not phpmyadmin db) and remember dont work my pwAdmin yet.
    - Where i can edit event (lengague, hours, etc)

    i just need link because ill try to find but there are a lot of topics and still im reading and serching!
    Thank you in advance! My regards!!

  15. #270
    .#!/bin/bash sora1984 is offline
    MemberRank
    Feb 2011 Join Date
    127.0.0.1Location
    387Posts

    Re: PW Server Files 1.5.1 v101

    some stuff just doesn't work with 1.5.1 via iweb / pwadmin at this point in time well at least not public

    im working on an admin panel at the moment just using bash...



Advertisement