[Release] zTeam Season 8 Episode 2 (Source)

Page 57 of 216 FirstFirst ... 747495051525354555657585960616263646567107157 ... LastLast
Results 841 to 855 of 3226
  1. #841
    Hmm.. huh? MrQU3ST10N is offline
    MemberRank
    Jun 2013 Join Date
    Trojan St. 404Location
    1,109Posts

    re: [Release] zTeam Season 8 Episode 2 (Source)

    Quote Originally Posted by StefanoAguiar View Post
    You could be posting the link to download an editor that is compatible with this version
    I think you need an EasyLife too.
    Here it is ~~> RaGEZONE

  2. #842
    Join our JOURNEY! MaskARRA is offline
    MemberRank
    Mar 2013 Join Date
    416Posts

    re: [Release] zTeam Season 8 Episode 2 (Source)

    Quote Originally Posted by fallenfate View Post
    If the reason you ask is because you have an existing database with user records, you could just export the records and port them over into the database provided with this release.
    Yes I have, but I want to try first on my Old Database if its possible.
    Ill make a new Sub-Server using only the GameServer released on this thread, they run but when I enter on the server it shows disconnect.
    I didnt try other programs like zMultiServer1- 2 ,zConnectServer and eXdB.exe...

  3. #843
    Put Community First fallenfate is offline
    MemberRank
    Oct 2014 Join Date
    Arad DomanLocation
    1,108Posts

    re: [Release] zTeam Season 8 Episode 2 (Source)

    Quote Originally Posted by MaskARRA View Post
    Yes I have, but I want to try first on my Old Database if its possible.
    Ill make a new Sub-Server using only the GameServer released on this thread, they run but when I enter on the server it shows disconnect.
    I didnt try other programs like zMultiServer1- 2 ,zConnectServer and eXdB.exe...
    Well, technically, as long as the required tables and fields are there, the old database should work. As mentioned by others, though, there may be random issues that arise over time through testing, but that's more likely if you were to, say, use an S6 database, lol.

  4. #844
    Enthusiast Chalidow is offline
    MemberRank
    Jun 2015 Join Date
    London, UnitedLocation
    49Posts

    re: [Release] zTeam Season 8 Episode 2 (Source)

    Hello
    Guys any one can share servers files + Client sound + DB
    with working CS Arca War and Archeron not bugged ?
    Please Thx

  5. #845
    Valued Member Callejero is offline
    MemberRank
    Sep 2013 Join Date
    ArgentinaLocation
    127Posts

    re: [Release] zTeam Season 8 Episode 2 (Source)

    Quote Originally Posted by Chalidow View Post
    Hello
    Guys any one can share servers files + Client sound + DB
    with working CS Arca War and Archeron not bugged ?
    Please Thx
    o.O other EasyLife :P guys
    I do not think anyone give away what you're asking

    - - - Updated - - -

    Hello fellow'm trying to add a message to the GS when the shop is relogean, now get the message but not relogea the shop that month would be missing? the code

    Español :
    hola compañeros estoy intentando agregar un mensaje al GS cuando se relogean los shop, ahora sale el mensaje pero no relogea los shop que mes estaria faltando ? al codigo

    void ShopManager::Reload()

    {
    for( int i = 0; i < this->m_ShopList.size(); i++ )
    {
    this->m_ShopList[i].Init();
    this->m_ShopList[i].m_ShopNumber = i;
    char FilePath[MAX_PATH] = { 0 };
    sprintf(FilePath, "Shop\\Shop%d.xml", i);
    MsgBox("Shop Loaded")
    return;

    if( _access(gDirPath.GetNewPath(FilePath), 4) != -1 )
    {
    if( this->m_ShopList[i].LoadShopItem(gDirPath.GetNewPath(FilePath)) )
    {
    this->m_ShopList[i].m_Loaded = true;

    }
    }
    }
    }

  6. #846
    Valued Member jnicolau is offline
    MemberRank
    Apr 2005 Join Date
    brasilLocation
    130Posts

    re: [Release] zTeam Season 8 Episode 2 (Source)

    hi guys , when we do master lvl quest or any other quest it dont show the progress of what we doing is that possible get the code to fix that.
    thx

  7. #847
    (づ。◕‿‿◕。) Natzugen is offline
    MemberRank
    Jun 2014 Join Date
    ElbelandLocation
    1,858Posts

    re: [Release] zTeam Season 8 Episode 2 (Source)

    Quote Originally Posted by Callejero View Post
    Hello fellow'm trying to add a message to the GS when the shop is relogean, now get the message but not relogea the shop that month would be missing? the code

    void ShopManager::Reload()

    {
    for( int i = 0; i < this->m_ShopList.size(); i++ )
    {
    this->m_ShopList[i].Init();
    this->m_ShopList[i].m_ShopNumber = i;
    char FilePath[MAX_PATH] = { 0 };
    sprintf(FilePath, "Shop\\Shop%d.xml", i);
    MsgBox("Shop Loaded")
    return;

    if( _access(gDirPath.GetNewPath(FilePath), 4) != -1 )
    {
    if( this->m_ShopList[i].LoadShopItem(gDirPath.GetNewPath(FilePath)) )
    {
    this->m_ShopList[i].m_Loaded = true;

    }
    }
    }
    }
    replace with this
    PHP Code:
    void ShopManager::Reload()

       for( 
    int i 0this->m_ShopList.size(); i++ )   
     {  
        
    this->m_ShopList[i].Init();      
        
    this->m_ShopList[i].m_ShopNumber i;       
        
    char FilePath[MAX_PATH] = { };      
        
    sprintf(FilePath"Shop\\Shop%d.xml"i);     
        if( 
    _access(gDirPath.GetNewPath(FilePath), 4) != -)   
         {     
           if( 
    this->m_ShopList[i].LoadShopItem(gDirPath.GetNewPath(FilePath)) )      
          {         
             
    this->m_ShopList[i].m_Loaded true;            }   
         }  
      } 
       
    //reload message  
       
    MsgBox("Shop Loaded");

    Last edited by Natzugen; 08-07-15 at 07:39 PM.

  8. #848
    Valued Member Callejero is offline
    MemberRank
    Sep 2013 Join Date
    ArgentinaLocation
    127Posts

    re: [Release] zTeam Season 8 Episode 2 (Source)

    Quote Originally Posted by natzugen View Post
    replace with this
    PHP Code:
    void ShopManager::Reload()

       for( 
    int i 0this->m_ShopList.size(); i++ )   
     {  
        
    this->m_ShopList[i].Init();      
        
    this->m_ShopList[i].m_ShopNumber i;       
        
    char FilePath[MAX_PATH] = { };      
        
    sprintf(FilePath"Shop\\Shop%d.xml"i);     
        if( 
    _access(gDirPath.GetNewPath(FilePath), 4) != -)   
         {     
           if( 
    this->m_ShopList[i].LoadShopItem(gDirPath.GetNewPath(FilePath)) )      
          {         
             
    this->m_ShopList[i].m_Loaded true;            }   
         }  
      } 
       
    //reload message  
       
    MsgBox("Shop Loaded");

    Thank You Natzugen.!

    error.jpg

    Natzugen as I can change the title of the message?

  9. #849
    (づ。◕‿‿◕。) Natzugen is offline
    MemberRank
    Jun 2014 Join Date
    ElbelandLocation
    1,858Posts

    re: [Release] zTeam Season 8 Episode 2 (Source)

    Quote Originally Posted by Callejero View Post
    Thank You Natzugen.!

    error.jpg

    Natzugen as I can change the title of the message?
    oops
    replace
    Code:
    MsgBox("Shop Loaded");
    with thsi
    Code:
    MessageBox(0,"Shop Loaded", "Shops Reload", MB_OK);

  10. #850
    Enthusiast degola is offline
    MemberRank
    Apr 2015 Join Date
    39Posts

    re: [Release] zTeam Season 8 Episode 2 (Source)

    Who have full fix? Server and client?
    I can buy, send me skype (pm)

  11. #851
    Account Upgraded | Title Enabled! muonlinegr2 is offline
    MemberRank
    May 2012 Join Date
    GreeceLocation
    708Posts

    re: [Release] zTeam Season 8 Episode 2 (Source)

    please i have full fix muserver and client please upload post link download

  12. #852
    Apprentice Andres Galviz is offline
    MemberRank
    Jul 2013 Join Date
    5Posts

    re: [Release] zTeam Season 8 Episode 2 (Source)

    nobody will share a full fix
    because most people will want to sell their full fixes
    if I had more knowledge in problem-bugs and errors, I would publish full fix without hesitation
    But I do not know :'(

  13. #853
    Valued Member StefanoAguiar is offline
    MemberRank
    Sep 2013 Join Date
    BrasilLocation
    108Posts

    re: [Release] zTeam Season 8 Episode 2 (Source)

    I'm as PK, I can not attack any person, where we arrange this?

  14. #854
    Join our JOURNEY! MaskARRA is offline
    MemberRank
    Mar 2013 Join Date
    416Posts

    re: [Release] zTeam Season 8 Episode 2 (Source)

    Quote Originally Posted by StefanoAguiar View Post
    I'm as PK, I can not attack any person, where we arrange this?
    Check on your Serverinfo, NONPK = 1/Enabled , 0/Disabled

  15. #855
    Enthusiast degola is offline
    MemberRank
    Apr 2015 Join Date
    39Posts

    re: [Release] zTeam Season 8 Episode 2 (Source)

    Who have pk clear npc ? ;.d

    - - - Updated - - -

    Who have main unlock to new itens?



Advertisement