Register for your free account! | Forgot your password?

You last visited: Today at 12:43

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



Albetron source

Discussion on Albetron source within the CO2 Private Server forum part of the Conquer Online 2 category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Apr 2012
Posts: 32
Received Thanks: 2
Albetron source

I'm using this source right now and i saw it has severel steeds.
but my question is, does it also have +3/+4/+5 etc and also mount things like tigers? or scorpion?
Does it also has riding skill?
If the answers to my questions are no, how could i add em?
thanks
jschellekens is offline  
Old 03/20/2015, 22:01   #2
 
pintinho12's Avatar
 
elite*gold: 0
Join Date: Jul 2009
Posts: 908
Received Thanks: 390
You can add them easily, but i think they're already implemented. It's item part, probably it is already done, the max you gonna do is make the item on the inventory and equip. To add new itens, just go to the database and add it there, also on the client.

Off-topic: Came to see the topic because of the "Albetron" looks funny, sounds like a Conquer w/ Tron using Albetros.
pintinho12 is offline  
Old 03/20/2015, 22:13   #3
 
elite*gold: 0
Join Date: Apr 2012
Posts: 32
Received Thanks: 2
Haha well, i found a normal steed in the source but nothing like +6 or +7,
also no mount armor. Found the riding skill but not sure if it works..
jschellekens is offline  
Old 03/20/2015, 22:27   #4
 
pintinho12's Avatar
 
elite*gold: 0
Join Date: Jul 2009
Posts: 908
Received Thanks: 390
I checked Albetros already, the mount skill works.
I didn't bother checking the mount armors, but i guess they work too. Just get the commands and make it.
I am at work now, i can't help :x
pintinho12 is offline  
Old 03/20/2015, 22:36   #5
 
elite*gold: 0
Join Date: Apr 2012
Posts: 32
Received Thanks: 2
I can't find the names/id's to spawn em.
When u are done at work, could u help me?
would really appreciate that

thanks
jschellekens is offline  
Old 03/20/2015, 23:05   #6
 
elite*gold: 21
Join Date: Jul 2005
Posts: 9,193
Received Thanks: 5,376
Pretty sure you need sub classes working in order to use mount armors although I've never done anything with them.

You may need to do a bit more work to get them working properly....

PS: Albetros is a pretty trashy source. I dumped it for a reason.
pro4never is offline  
Old 03/20/2015, 23:53   #7
 
elite*gold: 0
Join Date: Apr 2012
Posts: 32
Received Thanks: 2
Well actually i got it to work. but the mount armor is for wrangler lv 6
Does wrangler work?
jschellekens is offline  
Old 03/21/2015, 19:10   #8
 
pintinho12's Avatar
 
elite*gold: 0
Join Date: Jul 2009
Posts: 908
Received Thanks: 390
He just started the Subclasses work, didn't finish.
If you want to see a working (******) Sub-class system for 5517, take a look at my thread

It does have the Subclass system. I will be improving in later versions.
pintinho12 is offline  
Old 03/22/2015, 03:36   #9
 
_DreadNought_'s Avatar
 
elite*gold: 28
Join Date: Jun 2010
Posts: 2,223
Received Thanks: 867
Quote:
Originally Posted by pro4never View Post
Pretty sure you need sub classes working in order to use mount armors although I've never done anything with them.

You may need to do a bit more work to get them working properly....

PS: Albetros is a pretty trashy source. I dumped it for a reason.
don't even need to implement them if you just want armours just send the packet saying they're the subclass x at level x

@OP:
from acidcov3
Code:
using System.IO;

namespace COPS2012.Network.Packets
{
    public class SubClassShowPacket
    {
        public ushort ID;
        public byte Class;
        public byte Phase;

        public SubClassShowPacket() { }

        public byte[] BuildPacket()
        {
            var strm = new BinaryWriter(new MemoryStream());
            strm.WritePacketType((PacketType)2320);
            strm.WriteUInt16(ID);
            strm.WriteByte(Class);
            strm.WriteByte(Phase);
            return strm.Finalize();
        }
    }
}
onlogin
Code:
client.Send(new SubClassShowPacket {Class = 9, ID = 4, Phase = 9}.BuildPacket());
client.Send(new SubClassShowPacket {Class = 9, ID = 5, Phase = 9}.BuildPacket());
this is all you need to be able to wear the armours @op

oh and as for getting the actual armors;
Code:
case "@tigers":
                    {
                        uint start = 200000;
                        for (byte i = 0; i < 11; i++)
                        {
                            start += 1;
                            Client.Inventory.AddItem(new Item((int)start, 12))
                        }
                        break;
                    }
                case "@deers":
                    {
                        uint start = 200100;
                        for (byte i = 0; i < 10; i++)
                        {
                            start += 1;
                            Client.Inventory.AddItem(new Item((int)start, 12));
                        }
                        break;
                    }
ps; not going to defend the command code; this was back in 2012
_DreadNought_ is offline  
Old 03/22/2015, 05:08   #10
 
pintinho12's Avatar
 
elite*gold: 0
Join Date: Jul 2009
Posts: 908
Received Thanks: 390
Quote:
Originally Posted by _DreadNought_ View Post
Code:
client.Send(new SubClassShowPacket {Class = 9, ID = 4, Phase = 9}.BuildPacket());
client.Send(new SubClassShowPacket {Class = 9, ID = 5, Phase = 9}.BuildPacket());
So this is how you send the subclasses?
And i was doing some ****... ****... Thats ******* easy
****... i will try it xD
pintinho12 is offline  
Old 03/22/2015, 15:05   #11
 
_DreadNought_'s Avatar
 
elite*gold: 28
Join Date: Jun 2010
Posts: 2,223
Received Thanks: 867
Quote:
Originally Posted by pintinho12 View Post
So this is how you send the subclasses?
And i was doing some ****... ****... Thats ******* easy
****... i will try it xD
Yea.. I just pulled the code out of the acidcov3 src

how were you doing it? o.o
_DreadNought_ is offline  
Old 03/23/2015, 21:42   #12
 
pintinho12's Avatar
 
elite*gold: 0
Join Date: Jul 2009
Posts: 908
Received Thanks: 390
Quote:
Originally Posted by _DreadNought_ View Post
Yea.. I just pulled the code out of the acidcov3 src

how were you doing it? o.o
I checked now that i did it right.
My first try with Subclasses i was learning the SC and then Upleveling it.

Something like.
Code:
while(actualLevel < Level){
SendUplev();
}
Until i find out that i could sent the 9 levels in 1 packet xD
pintinho12 is offline  
Reply


Similar Threads Similar Threads
[Vk] Steam Acc mit:Counter Strike Source, Css Beta ; Day of Deafeat Source ;+mehr!
07/29/2011 - Counter-Strike Trading - 6 Replies
Folgende Spiele sind Vorhanden:Steam Acc mit:Counter Strike Source, Css Beta ; Day of Deafeat Source ;Half Life 2 Deathmatch;Half Life 2 Loast CoastAlle unbanned) Screens:ImageShack® - Online Photo and Video Hosting Suche Psc/Paypal oder ANDERE Steam Accs ,zahle Extra!
[WTS] Steam ACC - Counter Strike Source, Day of Defeat: Source und Half-Life 2: Death
12/12/2010 - Counter-Strike Trading - 1 Replies
Delete.
[Request]Black&White Source or other source for version 5065 or 5095
04/11/2009 - CO2 Private Server - 22 Replies
I need Source Black and White or from other server i wanna Start a server.. All who help me will got Pm or Gm on my server.. ________
[Release]How To Make Tq Source Work + Working Source + Server ByBass + Commands
12/08/2008 - CO2 PServer Guides & Releases - 15 Replies
1: How To Make The Server Work In fact, before other people did not just let ACC now with hi EACC Columbia landing on the settlement of the issue, and the rest is our own how to improve the content of those interested can improve the next. MY MY set and the same. INI MAP INI files and MAP with the client-to-date coverage of the account. server.dat ! And then as long as the client will be able to modify server.dat! 127.0.0.1 192.168.0.1 192.168.1.1 IP。 Please do generally use...



All times are GMT +2. The time now is 12:43.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.