-
[Release] My commands- @unstuck, @info, !slime, @helpme
@info - This can help out new players
Code:
if (splitted[0].equals("@info")) {
mc.dropMessage("============================================================");
mc.dropMessage(" Server info");
mc.dropMessage("============================================================");
mc.dropMessage("-----------------------------NPC's--------------------------");
mc.dropMessage("Duey- Skill maxer");
mc.dropMessage("Cody- Job advancer");
mc.dropMessage("Tia- Guild hideouts");
mc.dropMessage("");
mc.dropMessage("");
mc.dropMessage("");
mc.dropMessage("");
mc.dropMessage("");
mc.dropMessage("");
mc.dropMessage("");
mc.dropMessage("");
mc.dropMessage("");
!slime - This spawns some EXP slimes
Code:
} else if (splitted[0].equals("!slime")) {
MapleMonster mob0 = MapleLifeFactory.getMonster(9400551);
for (int x = 0; x < [5]; x++) {
c.getPlayer().getMap().spawnMonsterOnGroudBelow(mob0, c.getPlayer().getPosition());
c.getPlayer().getMap().broadcastMessage(MaplePacketCreator.serverNotice(0, "[Event] EXP slimes!"));
@unstuck - Will unstuck a player if they are stuck
Code:
if (splitted[0].equals("@unstuck")) {
MapleMap target = cserv.getMapFactory().getMap(910000000);
MaplePortal targetPortal = target.getPortal(0);
player.changeMap(target, targetPortal);
Code:
} else if (splitted[0].equals("@helpme")) {
c.getPlayer().getMap().broadcastMessage(MaplePacketCreator.serverNotice(6, "[Automsg] " + c.getPlayer().getName() + "Needs help! Awww! Poor baby!"));
mc.dropMessage("Haha noob");
!papu - This is just for the people that have sinems repack. I think moogra forgot it >.<
Code:
} else if (splitted[0].equals("!slime")) {
MapleMonster mob0 = MapleLifeFactory.getMonster(9500180);
for (int x = 0; x < [5]; x++) {
c.getPlayer().getMap().spawnMonsterOnGroudBelow(mob0, c.getPlayer().getPosition());
c.getPlayer().getMap().broadcastMessage(MaplePacketCreator.serverNotice(0, "[Event] Papulatus has been spawned! Run for your life!"));
I will add more commands later. For now, NO FLAMING
Credits to me for all these commands exept the @helpme. That command is based off of BloodAngel13 fake @ban command [Original thread: http://forum.ragezone.com/f427/relea...dated-507043/]
-
Re: [Release] My commands
Nice job on all exept @ban. I released that yesterday. Ironic isnt it? Link: http://forum.ragezone.com/f427/relea...pdated-507043/ BTW mine is way more advanced. Still nice job I guess.
-
Re: [Release] My commands
Quote:
Originally Posted by
BloodAngel13
Lol...Oopsys didint see that o.o
-
Re: [Release] My commands
-
Re: [Release] My commands
Well at least add a 'Credits to BloodAngel13' under @ban ploxz :D Thats 25% credits to me roflz.
-
Re: [Release] My commands
Quote:
Originally Posted by
BloodAngel13
Well at least add a 'Credits to BloodAngel13' under @ban ploxz :D Thats 25% credits to me roflz.
Lol. Its ok. Ill just delete it >.<
-
Re: [Release] My commands
-
Re: [Release] My commands
Quote:
Originally Posted by
adog353
Lol. Its ok. Ill just delete it >.<
Rofl ok then. For the @info thing, I just used an npc for that. Helps me practice my coding skills and its more fun xD
Ohh wow, instead you put based off fake @ban command. Why dont you just want to give me credits? If you released something I would give credits to you. I want to be known for something =(
-
Re: [Release] My commands
Bloodangel i made a command based off of your @ban command but i gave you credit =)
-
Re: [Release] My commands
Yay! Finally my first credit! xD I feelz happy =D The more poplular this release gets, the more I will be known for the @ban command xD
-
Re: [Release] My commands
Quote:
Originally Posted by
BloodAngel13
Yay! Finally my first credit! xD I feelz happy =D The more poplular this release gets, the more I will be known for the @ban command xD
Famous for a simple command. Lol.
-
Re: [Release] My commands
Added !papu fix for SineMS repack
-
Re: [Release] My commands
Quote:
Originally Posted by
MiniAxel
Famous for a simple command. Lol.
Pretty much yeah xD I feel proud for releasing something that I thought would be crap to everyone else. :thumbup:
-
Re: [Release] My commands
Why should he give credit to you? He should try and find out who originally made the !ban command, all you did was add a couple lines of code...
-
Re: [Release] My commands
Quote:
Originally Posted by
xXMicrosoftXx
Why should he give credit to you? He should try and find out who originally made the !ban command, all you did was add a couple lines of code...
Wow....It was a FAKE command. Can you read?
-
Re: [Release] My commands
Ohh k sorry I didn't see that part at the end.
-
Re: [Release] My commands
btw your @unstuck warps the user to fm, doesn't unstuck in anyway. and your missing some definitions.
Code:
if (splitted[0].equals("@unstuck")) {
ChannelServer cserv = c.getChannelServer();
MapleCharacter player = c.getPlayer();
MapleMap target = cserv.getMapFactory().getMap(910000000);
MaplePortal targetPortal = target.getPortal(0);
player.changeMap(target, targetPortal);
-
Re: [Release] My commands
Quote:
Originally Posted by
acEvolution
btw your @unstuck warps the user to fm, doesn't unstuck in anyway. and your missing some definitions.
Code:
if (splitted[0].equals("@unstuck")) {
ChannelServer cserv = c.getChannelServer();
MapleCharacter player = c.getPlayer();
MapleMap target = cserv.getMapFactory().getMap(910000000);
MaplePortal targetPortal = target.getPortal(0);
player.changeMap(target, targetPortal);
You dont need those extra definitions...
-
Re: [Release] My commands- @unstuck, @info, !slime, @helpme
I think you made a mistake. You posted !slimes twice. =)
-
Re: [Release] My commands- @unstuck, @info, !slime, @helpme
PHP Code:
} else if (splitted[0].equals("!slime")) {
MapleMonster mob0 = MapleLifeFactory.getMonster(9500180);
for (int x = 0; x < [5]; x++) {
c.getPlayer().getMap().spawnMonsterOnGroudBelow(mob0, c.getPlayer().getPosition());
c.getPlayer().getMap().broadcastMessage(MaplePacketCreator.serverNotice(0, "[Event] Papulatus has been spawned! Run for your life!
this will not work
-
Re: [Release] My commands- @unstuck, @info, !slime, @helpme
The ban command can be spammed. Many people spamming = disaster.
-
Re: [Release] My commands- @unstuck, @info, !slime, @helpme
no @pap works now if you get the next revision
slime will not work anyways. There is no array. Your first slime command doesn't work as well.
Unstuck is quite useless. It'll mess up people jailed anyways. It just transports you to fm, where you can click on the trade button.
-
Re: [Release] My commands- @unstuck, @info, !slime, @helpme
Quote:
Originally Posted by
Leaf Story
1. Fuck off.
2. You will get infracted for that
3. Lets see ONE of your releases
-
Re: [Release] My commands- @unstuck, @info, !slime, @helpme
Quote:
Originally Posted by
adog353
1. Fuck off.
2. You will get infracted for that
3. Lets see ONE of your releases
1. No
2. I dont see the infraction yet, so don't be predicting what the mods will do unless you are one.
3. Quit trying to redirect everything, even if he makes shitty releases doesn't make yours good.
-
Re: [Release] My commands- @unstuck, @info, !slime, @helpme
Quote:
Originally Posted by
iamSTEVE
1. No
2. I dont see the infraction yet, so don't be predicting what the mods will do unless you are one.
3. Quit trying to redirect everything, even if he makes shitty releases doesn't make yours good.
I know that. But he shouldent be talking. And ESPECIALLY YOU. You didint even MAKE a realease....