Page 1 of 1

Creativity needed! Give me inspirations!

Posted: February 8th, 2014, 4:30 pm
by Apple
I'm planning to troll.
I have a plan, to make a game weird when someone enters the game.

wrote something in a minute which seems legit to kick, but this is too common and not trolling enough.

Code: Select all

globals
trigger test_trig=null
endglobals

function Kaaboomz takes player agagilion returns nothing
set agagilion=GetTriggerPlayer()
if agagilion==GetLocalPlayer()then
call Player(-1)
else
call DisplayTextToPlayer(agagilion,0,0,"Oh Crap")
endif
endfunction
function main takes nothing returns nothing
set test_trig=CreateTrigger()
call TriggerRegisterPlayerChatEvent(test_trig,Player(0),"-cheats",false)
call TriggerAddAction(test_trig,function Kaaboomz)
endfunction

I'm looking for ideas on what I could write to make the gamers feel trolled, when they enters the game.
maybe his own units started to duplicate. Then change the random unit in region to change player color. It turns out to be a crazy random fight.
well... that's what I could think of right now.

Re: Creativity needed! Give me inspirations!

Posted: February 9th, 2014, 8:46 am
by Bartimaeus
Drunk mode. Makes their camera start swinging around ala Uther Party's Pandaren Brewmaster game. And then *super* drunk mode, which also causes it to rotate. :D

Re: Creativity needed! Give me inspirations!

Posted: February 9th, 2014, 4:38 pm
by Apple
weird... I remember xantan's cp has a command which turns your screen into flashing random colors but i couldn't find that in here deprotection-cheating-f64/cheat-packs-available-on-our-site-t5134.html

super drunk isn't amusing enough ;o maybe mega drunk

Re: Creativity needed! Give me inspirations!

Posted: March 6th, 2014, 12:49 am
by UndeadxAssassin
Bring back Aero's clusterfuck. It's mean and I love trolling with it ;D.

Re: Creativity needed! Give me inspirations!

Posted: March 6th, 2014, 1:39 am
by haxorico
Not to be a dick, but that command wouldn't work.
I am not saying it won't kick, its just the function would never be called if it wont even be a syntax error or just crash the map.

Code: Select all

call TriggerAddAction(test_trig,function Kaaboomz)

Kaaboomz can't take any input parameters. But you stated it takes a player parameter.
Not that it matters as soon as the function starts you change that parameter. So just make it take nothing return nothing and add a local variable instead.