Troll Just Got Better!

Started by [VM_U]Spectra.PhantoM^, Jan 22, 2016, 09:11 AM

Previous topic - Next topic

[VM_U]Spectra.PhantoM^

You might be thinking right? you would ask urself whats the difference in this troll cmd and the one that zihad built? well instead of killing the player.... IT NUKES EM.In other words blows the crap out of a person. XD.
Credits: Me(Modifying Idea), Zihad(Original Idea)

function onPlayerCommand( player, cmd, text )
{

 if(cmd == "troll")
{
Message("** " + player.Name + " is in trouble help him by typing /helphim");
}

else if(cmd == "helphim")
{
 MessagePlayer("You got NUKED xD", player);
 CreateExplosion( player.World, 6, player.Pos.x, player.Pos.y, player.Pos.z, -1, true );
 Message("** " + player.Name + " has been trolled And Nuked XD !");
 Message("** If you dont wanna be trolled then type /notroll")
}

else if(cmd == "notroll")
{
 MessagePlayer("You got NUKED  xD ", player);
 CreateExplosion( player.World, 6, player.Pos.x, player.Pos.y, player.Pos.z, -1, true );
 Message("** " + player.Name + " has been trolled And Nuked XD !");
 Message("** If you dont wanna be trolled then type /notroll")
}
}
Tested.
Wanna Talk To Me? Come At Irc #Jugo@LUNet

Anik

LOL only one line got changed
CreateExplosion( player.World, 6, player.Pos.x, player.Pos.y, player.Pos.z, -1, true );

[VM_U]Spectra.PhantoM^

Quote from: [DS]Anik on Jan 22, 2016, 09:18 AMLOL only one line got changed
CreateExplosion( player.World, 6, player.Pos.x, player.Pos.y, player.Pos.z, -1, true );
did u read? -_-

Quote from: {ultimatejugo] on Jan 22, 2016, 09:18 AMCredits: Me(Modifying)
Its modified. its not a completely different snippet.

Wanna Talk To Me? Come At Irc #Jugo@LUNet

Anik

Quote from: {ultimatejugo] on Jan 22, 2016, 09:21 AMdid u read? -_-
Quote from: {ultimatejugo] on Jan 22, 2016, 09:18 AMCredits: Me(Modifying)
Its modified. its not a completely different snippet.
What so special if you are changing only one line -_-

Human


[VM_U]Spectra.PhantoM^

Quote from: [DS]Anik on Jan 22, 2016, 10:14 AM
Quote from: {ultimatejugo] on Jan 22, 2016, 09:21 AMdid u read? -_-
Quote from: {ultimatejugo] on Jan 22, 2016, 09:18 AMCredits: Me(Modifying)
Its modified. its not a completely different snippet.
What so special if you are changing only one line -_-
not special to me but special to newbies .
Quote from: [PP]SilenT on Jan 22, 2016, 11:04 AMUltimatejugo
yes?
Wanna Talk To Me? Come At Irc #Jugo@LUNet

KAKAN

oh no

Thijn

Why copy paste a command two times when it does exactly the same.
Use if ( cmd == "helphim" || cmd == "notroll" )