[RELEASE] A FEW COMMANDS

02/11/2009 12:53 PeTe Ninja#1
hi im pete,

before flaming me please read all the way at the bottom =]


/restart command , to make this command you have to just do /restart and add
Code:
 General.ServerRestart();


Code:
                                        if (Splitter[0] == "/restart") // restarts the server from ingame (exa. /restart )
                                        {
                                            
                                            World.SendMsgToAll("Server Restarting!", "SYSTEM", 2011);
                                            Console.WriteLine("Server Restarting from In-Game");
                                            General.ServerRestart();
                                        }
/cps command and /silvers , this just makes it add cps/silvers to your current amount instead of replacing it, all you do is change = to +=

Code:
if (Splitter[0] == "/cps") // Adds cps to your current amount of cps (exa. /cps 5000 )
                                        {
                                            uint NewCPs = uint.Parse(Splitter[1]);

                                            MyChar.CPs += NewCPs;
                                            SendPacket(General.MyPackets.Vital((long)MyChar.UID, 30, MyChar.CPs));
                                        }
Code:
                                        if (Splitter[0] == "/silvers") // Adds silvers to your current amount of silvers (exa. /silvers 5000 )
                                        {
                                            uint NewSilvers = uint.Parse(Splitter[1]);

                                            MyChar.Silvers += NewSilvers;
                                            SendPacket(General.MyPackets.Vital((long)MyChar.UID, 4, MyChar.Silvers));
                                        }
now this command i didn't even make or change anything, i just got it from a previous source i had and since no one has it out ill release it

Code:
                                        if (Splitter[0] == "/pkp") // changes your current pkps (exa. /pkp 100 ) << black name
                                        {
                                            ushort pkp = ushort.Parse(Splitter[1]);
                                            MyChar.PKPoints = pkp;
                                            SendPacket(General.MyPackets.Vital(MyChar.UID, 6, MyChar.PKPoints));
                                            World.UpdateSpawn(MyChar);
                                            SendPacket(General.MyPackets.CharacterInfo(MyChar));
                                            MyChar.SendEquips(false);
                                            SendPacket(General.MyPackets.Vital(MyChar.UID, 26, MyChar.GetStat()));
                                            World.SpawnMeToOthers(MyChar, true);
                                        }
now these commands i made myself but its very easy just replace it with the item you have, simple as that... didn't take me long , packs your dbs,meteors or stones =]

Code:
                                    if (Message == "/pack met") // Packs 10 Meteors into a Meteor Scroll (exa. /pack met )

                                        if (MyChar.InventoryContains(1088001, 10))
                                        {
                                            MyChar.RemoveItem(MyChar.ItemNext(1088001));
                                            MyChar.RemoveItem(MyChar.ItemNext(1088001));
                                            MyChar.RemoveItem(MyChar.ItemNext(1088001));
                                            MyChar.RemoveItem(MyChar.ItemNext(1088001));
                                            MyChar.RemoveItem(MyChar.ItemNext(1088001));
                                            MyChar.RemoveItem(MyChar.ItemNext(1088001));
                                            MyChar.RemoveItem(MyChar.ItemNext(1088001));
                                            MyChar.RemoveItem(MyChar.ItemNext(1088001));
                                            MyChar.RemoveItem(MyChar.ItemNext(1088001));
                                            MyChar.RemoveItem(MyChar.ItemNext(1088001));
                                            MyChar.AddItem("720027-0-0-0-0-0", 0, (uint)General.Rand.Next(36457836));
                                        }
                                    if (Message == "/pack db") // Packs 10 DragonBalls into a DragonBall Scroll (exa. /pack db )

                                        if (MyChar.InventoryContains(1088000, 10))
                                        {
                                            MyChar.RemoveItem(MyChar.ItemNext(1088000));
                                            MyChar.RemoveItem(MyChar.ItemNext(1088000));
                                            MyChar.RemoveItem(MyChar.ItemNext(1088000));
                                            MyChar.RemoveItem(MyChar.ItemNext(1088000));
                                            MyChar.RemoveItem(MyChar.ItemNext(1088000));
                                            MyChar.RemoveItem(MyChar.ItemNext(1088000));
                                            MyChar.RemoveItem(MyChar.ItemNext(1088000));
                                            MyChar.RemoveItem(MyChar.ItemNext(1088000));
                                            MyChar.RemoveItem(MyChar.ItemNext(1088000));
                                            MyChar.RemoveItem(MyChar.ItemNext(1088000));
                                            MyChar.AddItem("720028-0-0-0-0-0", 0, (uint)General.Rand.Next(36457836));
                                        }
                                    if (Message == "/pack stone") // Packs 5 +1 Stones into a +1StonePack (exa. /pack stone )
                                        if (MyChar.InventoryContains(730001, 5))
                                        {
                                            MyChar.RemoveItem(MyChar.ItemNext(730001));
                                            MyChar.RemoveItem(MyChar.ItemNext(730001));
                                            MyChar.RemoveItem(MyChar.ItemNext(730001));
                                            MyChar.RemoveItem(MyChar.ItemNext(730001));
                                            MyChar.RemoveItem(MyChar.ItemNext(730001));
                                            MyChar.AddItem("723712-0-0-0-0-0", 0, (uint)General.Rand.Next(36457836));
                                        }
now dont flame because i know these are nooby commands , but im releasing them because no one else did and some are helpful, if you dont like it i dont care, just trying to help... no i dont expect thanks, so idc ifyou give or not :D ,, anyway good luck with your server!
02/11/2009 15:46 Exia13#2
For being smart i'll give you thanks lol.
02/11/2009 15:58 yuko#3
/pack command is a stolen idea that was used in a Private server hosted by myself and rixus
02/11/2009 16:05 ph03nixx#4
@yuko
prove it......
02/11/2009 16:09 yuko#5
this is the code used by us.
and yeah we didn't add the +1 stones becaus that was useless to pack those.
however ask grant we had this command from the start of the server.


if (Splitter[0] == "/pack")
{
if (Splitter[1] == "met")
{
if (MyChar.InventoryContains(1088001, 10))
{
for (int i = 0; i < 10; i++)
{
MyChar.RemoveItem(MyChar.ItemNext(1088001));
}
MyChar.AddItem("720027-0-0-0-0-0", 0, (uint)General.Rand.Next(36457836));
}
else
{
SendPacket(General.MyPackets.SendMsg(MessageId, "SYSTEM", MyChar.Name, "You are unable tp pack mets", 2000));
}
}
if (Splitter[1] == "db")
{
if (MyChar.InventoryContains(1088000, 10))
{
for (int i = 0; i < 10; i++)
{
MyChar.RemoveItem(MyChar.ItemNext(1088000));
}
MyChar.AddItem("720028-0-0-0-0-0", 0, (uint)General.Rand.Next(36457836));
}
else
{
SendPacket(General.MyPackets.SendMsg(MessageId, "SYSTEM", MyChar.Name, "You are unable tp pack dbs", 2000));
}
}
}
02/11/2009 19:12 kinshi88#6
Just more copy & pasted shit for a shitty source.

Woot
02/11/2009 21:05 PeTe Ninja#7
you guys dont read... i never played your server yuko and that command isnt anythihng like it

its seperate , so packing is not from your server its actually from a server i created long ago.. this was not copied from another source. from i made, except the /pkp and like i said above edited two things, so dont freaken flame its annoying. i dont care if you have it in your source , if you dont notice i said its easy to make EVREYONE CAN DO IT.. you dont need to be a genius

@kinshi.. didnt copy lol

@yuko you just made taht command, i can see you copied and pasted because you spelled to wrong... twice
02/11/2009 21:28 yuko#8
@yuko you just made taht command, i can see you copied and pasted because you spelled to wrong... twice

lol you dipshit it was spelled wrong whole time on the server aswell
and btw grant know that we had that command first time we started the server. anyway you are stealing ideas you get from other privite servers. like grant told rixus you gonna make pets that are acting like real pets "cats and dogs" wich already was on my server. so don't talk shit. you are only copying from other servers and btw you where gonna use the sitting heal aswell
so please get creative and stop copy past. or even copy ideas.
02/11/2009 22:07 nTL3fTy#9
Quote:
Originally Posted by PeTe Ninja View Post
now these commands i made myself but its very easy just replace it with the item you have, simple as that... didn't take me long , packs your dbs,meteors or stones =]
A simple right click on a Meteor or DragonBall would prove much easier than typing out a command each time you wanted to pack them. Same with unpacking, but that's already implemented for you.
02/11/2009 22:13 yuko#10
honestly i did rightpress on db to exchange into cps and the mets gave suply low exp
so
you could make an npc activation on the rightpress to ask what you wanna do but typing the command seems easyer :p
02/11/2009 22:36 PeTe Ninja#11
Quote:
Originally Posted by yuko View Post
@yuko you just made taht command, i can see you copied and pasted because you spelled to wrong... twice

lol you dipshit it was spelled wrong whole time on the server aswell
and btw grant know that we had that command first time we started the server. anyway you are stealing ideas you get from other privite servers. like grant told rixus you gonna make pets that are acting like real pets "cats and dogs" wich already was on my server. so don't talk shit. you are only copying from other servers and btw you where gonna use the sitting heal aswell
so please get creative and stop copy past. or even copy ideas.
are you serious about this?

hmmm grant doesn't come up with my ideas

pets = mobs for pets i got it from that /pet command, and i was thinking about creating a whole new thing for pets.. didnt come from you dont even know your server

commands ALL FROM ME ALL OF THEM EXCEPT /pkp , so stop being such a n00b , and saying its yours, because you know what, ITS NOT

IDEAS AREN'T OWNED... its what you do with them... and no one even knows about your server, many know about ours( me & grant & and a few others idk them yet )
02/12/2009 22:09 yuko#12
@pete
we all know that you two have fun with going on other private servers, testing them out and so on so you can improuve yours. anyway i don't care shit about this all anymore.

if you wanna know what the pets are on our server
- they need food
- they need attention
- they lvl and start at the lvl when the master summoned them by catching an egg "the easter eggs "
- we are adding a system that will allow them to use skills and help the master with his fight agains monsters. like stig - heal and so on.

- and you have to catch a monster by using special items - exemple the chicken is the tamming item for a bird.


anyway you do like you want go grab the ideas from other ppl this won't even make you able to use them anyway
02/12/2009 23:28 PeTe Ninja#13
i never played on a different private server except Deadly siege of conquest.. and i go check out other peoples websites and see if i can help them.. you seem to never be even on elitepvpers or help anyone, so dont critizize me , look at yourself first
02/13/2009 00:11 yuko#14
...help anyone

i do help if i have the time and if i think they worth it
and i actually helped more ppl then you . don't take the thanks or posts as refference
02/13/2009 00:24 PeTe Ninja#15
nevermind ... your right im wrong