• This site uses cookies. By continuing to use this site, you are agreeing to our use of cookies. Learn more.
  • Minecraft 1.16.220 Update + Bug/Crash Fixes
    Added MCPE 1.16.220 version and fixed crashes for multiple plugins. You can view the full changelist here.
  • Forum Updates - 4/11/2021
    Various changes have been made to the forums and a few categories. You can view the full changelist here.

Money Trolling

Warning!
Hello , there have been no replies in this thread for more than 30 days.
Please make sure you have a valid reason before you reply to this thread or you may face moderation action.
#1
Needs Economy plugin!
Scare a player by thinking they just bought dirt with all there money!
Credit to xXLink1147Xx for inspiring me to make this!


let %trollplayer% = %args%[1]
let %rep% = args%[2]
if %rep% = on then goto 7
if %rep% = off then goto 19
USAGE: /troll [player] [on/off]
exit
#enable
load %player%
load %trollmoney%
let %bal% = playerbalance(%trollplayer%)
let %trollmoney% = %bal%
let %player% = %trollplayer%
ascon /setmoney %trollplayer% 0
message %trollplayer% You Bought dirt for %bal%!
save %player%
save %trollmoney%
ascon /give %trollplayer% dirt 1
exit
#disable
load %player%
load %trollmoney%
ascon /givemoney %player% %trollmoney%
message %player% You got trolled! You didnt really accidentally buy dirt! Heres your money back, and you can keep the dirt!
message %p% Troll is now off for %player% and they have got all money back!
save %player%
save %trollmoney%
exit
 
#2
Needs Economy plugin!
Scare a player by thinking they just bought dirt with all there money!
Credit to xXLink1147Xx for inspiring me to make this!


let %trollplayer% = %args%[1]
let %rep% = args%[2]
if %rep% = on then goto 7
if %rep% = off then goto 19
USAGE: /troll [player] [on/off]
exit
#enable
load %player%
load %trollmoney%
let %bal% = playerbalance(%trollplayer%)
let %trollmoney% = %bal%
let %player% = %trollplayer%
ascon /setmoney %trollplayer% 0
message %trollplayer% You Bought dirt for %bal%!
save %player%
save %trollmoney%
ascon /give %trollplayer% dirt 1
exit
#disable
load %player%
load %trollmoney%
ascon /givemoney %player% %trollmoney%
message %player% You got trolled! You didnt really accidentally buy dirt! Heres your money back, and you can keep the dirt!
message %p% Troll is now off for %player% and they have got all money back!
save %player%
save %trollmoney%
exit
Lol i need this xD
 
#5
Do not double post
Lol hmm, maybe a cmd that can create a better and more usfull clearlagg? I rly need an improved 1
Ill try it XD. Is that your only idea? I'm thinking of making a /match or something or 1v1's.

Lol hmm, maybe a cmd that can create a better and more usfull clearlagg? I rly need an improved 1
I made "Three random commands", the post just needs approval to be displayed.
 
#9
Like maybw a skywars or a beswars. Bedwars would be awesome... I'm working on 1 atm, not going well xD
That shouldn't be to hard! Yes, ill try and make this for my server and post it on leet! Thanks or the Ideas

Like maybe a skywars or a beswars. Bedwars would be awesome... I'm working on 1 atm, not going well xD
if u get any idea tell me lol ill give credit for the ides
 
#13
can be improved by adding an array of players instead of overriding %trollmoney% every single time you use the command :p. You can also add a check if the players online :). The saves at the end of the command are unnecessary since you aren't redefining the variable. Heres a revised version because I'm bored :D:
Code:
let %trollplayer% = %args%[1]
if %trollplayer% in onlineplayers() then goto 5
message %p% This player is not online!
exit
let %rep% = args%[2]
if %rep% = \"on\" then goto 10
if %rep% = \"off\" then goto 20
USAGE: /troll [player] [on/off]
exit
#enable
load %trollmoney%
let %bal% = playerbalance(%trollplayer%)
let %trollmoney%[%trollplayer%] = %bal%
ascon /setmoney %trollplayer% 0
message %trollplayer% You Bought dirt for %bal%!
save %trollmoney%
ascon /give %trollplayer% dirt 1
exit
#disable
load %trollmoney%
let %player% = %args%[1]
ascon /givemoney %player% %trollmoney%
message %player% You got trolled! You didnt really accidentally buy dirt! Here's your money back, and you can keep the dirt!
message %p% Troll is now off for %player% and they have got all money back!
let %trollmoney%[%player%] =
save %trollmoney%
exit