×

Langue

Fermer
Atelier 801
  • Forums
  • Dev Tracker
  • Connexion
    • English Français
      Português do Brasil Español
      Türkçe Polski
      Magyar Română
      العربية Skandinavisk
      Nederlands Deutsch
      Bahasa Indonesia Русский
      中文 Filipino
      Lietuvių kalba 日本語
      Suomi עברית
      Italiano Česky
      Hrvatski Slovensky
      Български Latviešu
      Estonian
  • Langue
  • Forums
  • /
  • Transformice
  • /
  • Modules
  • /
  • [Script] The Haunted Doll - Control Other Players
« ‹ 4 / 12 › »
[Script] The Haunted Doll - Control Other Players
Babyshamon
« Citoyen »
1413324600000
    • Babyshamon#0000
    • Profil
    • Derniers messages
    • Tribu
#61
  1
wut a u talking about by fun??

idk how to use it :( I CONFUSEDD!!

Dernière modification le 1413332100000
Babyshamon
1413325620000
    • Babyshamon#0000
    • Profil
    • Derniers messages
    • Tribu
#62
[Modéré par Shamousey, raison : Double post.]

Dernière modification le 1413332100000
Itchyboy
« Citoyen »
1413328140000
    • Itchyboy#0000
    • Profil
    • Derniers messages
    • Tribu
#63
  1
I made an improved version of this: http://pastebin.com/8HbpvEG9
To make a doll say !doll [name] and then it's set.
Pegasmice
« Citoyen »
1413383160000
    • Pegasmice#0000
    • Profil
    • Derniers messages
#64
  0
AMAZING!!!!! :OOOOO
I love it!
Scaryswagz
« Citoyen »
1413392700000
    • Scaryswagz#0000
    • Profil
    • Derniers messages
#65
  0
/skittlezaj in te chat?
Wolfythecat
« Citoyen »
1413405420000
    • Wolfythecat#0000
    • Profil
    • Derniers messages
    • Tribu
#66
  0
babyshamon a dit :
wut a u talking about by fun??

idk how to use it :( I CONFUSEDD!!

I already explained how, if you're confused about anything you can ask me.

wolfythecat a dit :
babyshamon a dit :
----how do u leik use the script?

wolfythecat a dit :
You need to have a tribe in order to load it (as far as I know), you go to your tribe house and do /lua and copy and paste the code in there, then put the usernames in.

Kittencutez
« Citoyen »
1417230120000
    • Kittencutez#0000
    • Profil
    • Derniers messages
    • Tribu
#67
  1
[Cedrickmuks] im flying
[Cedrickmuks] wtf
[Cedrickmuks] im not moving
[Cedrickmuks] dahell
[Kittencutez] I think your being kidnapped by the magic dust
[Cedrickmuks] o

I am so evil.

Also, when I press 'I' for up, inventory comes up since its now the hotkey for inventory D:
Hydroper
« Citoyen »
1417275840000
    • Hydroper#0000
    • Profil
    • Derniers messages
    • Tribu
#68
  0
AWESOME! 0-o
Skittleeeeee
« Citoyen »
1417543320000
    • Skittleeeeee#0000
    • Profil
    • Derniers messages
    • Tribu
#69
  0
I cant do it. Im terrible at lua :(

Can someone help? I tried making the doll Squishymike and the God Skittleeeeee, HELP PLZ OwO

Dernière modification le 1417546080000
Skittleeeeee
1417543680000
    • Skittleeeeee#0000
    • Profil
    • Derniers messages
    • Tribu
#70
[Modéré par Shamousey, raison : Double post.]
Adorablebaby
« Citoyen »
1417886280000
    • Adorablebaby#0000
    • Profil
    • Derniers messages
#71
  0
Can you change the controls to uhjk since i opens the inventory?

Dernière modification le 1417886340000
Capufox
« Citoyen »
1417893180000
    • Capufox#0000
    • Profil
    • Derniers messages
#72
  0
http://img1.wikia.nocookie.net/__cb20140824085315/le-miiverse-resource/images/a/a3/Ben_drowned_deal_with_it_by_pokemonpikmin573-d737jbj.png

BEN Drowned: Deal with it!
Me: Deal with it babe!

this is just awesome :D
Notxephos
« Citoyen »
1419865140000
    • Notxephos#0000
    • Profil
    • Derniers messages
    • Tribu
#73
  0
Can you put the script in without the instructions it is kinda confusing :C
Omgitistaken
« Citoyen »
1420759080000
    • Omgitistaken#0000
    • Profil
    • Derniers messages
#74
  0
can someone do this for Squeakarz as the doll and me as the god/
Woebegone
« Citoyen »
1420858980000
    • Woebegone#8377
    • Profil
    • Derniers messages
    • Tribu
#75
  0
omgitistaken a dit :
can someone do this for Squeakarz as the doll and me as the god/

-- Insert your victim's name (person who you would like to move) here without removing the quotation marks.
doll= "Squeakarz"

-- Insert YOUR name here without removing the quotation marks.
god = "Omgitistaken"
-- That's it! Done! You can now run the script and troll people!

------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------
-----Do NOT edit the following code unless you're a developer, otherwise it probably won't work.------
------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------

-- Binding the keyboard for god(you)
-- 73 is I, the key for Up.
-- 75 is K, the key for Down
-- 74 is J, the key for Left.
-- 76 is L, the key for Right.

for name in pairs(tfm.get.room.playerList) do
-- Instead of binding each key seperately, we put them all in a group.
for keys, k in pairs({73, 74, 75, 76}) do
--And now the keys are binded!
tfm.exec.bindKeyboard(god, k, true, true)
end
end

-- Listening for keyboard events.
-- You'll notice that move values are different because it makes the doll easier to control.

function eventKeyboard(god, key, down, x, y)
if key == 73 then
--Moves the player Up by 50 pixels
tfm.exec.movePlayer(doll, 0, 0, true, 0, -50, false)
elseif key == 75 then
-- Moves the player Down by 40pixels
tfm.exec.movePlayer(doll, 0, 0, true, 0, 40, false)
elseif key == 74 then
-- Moves the player Left by 40 pixels
tfm.exec.movePlayer(doll, 0, 0, true, -40, 0, false)
elseif key == 76 then
-- Moves the player Right by 40 pixels
tfm.exec.movePlayer(doll, 0, 0, true, 40, 0, false)
end
end

-- Prints out you your doll only to you.

print("<font color='#FFFF00'>"..doll.."<font color='#FFFF00'> is now your doll!")
Slothingtonn
« Citoyen »
1423906620000
    • Slothingtonn#0000
    • Profil
    • Derniers messages
    • Tribu
#76
  0
but what r u supposed to backspace out
Slothingtonn
« Citoyen »
1423907280000
    • Slothingtonn#0000
    • Profil
    • Derniers messages
    • Tribu
#77
  0
it doesnt work
Woebegone
« Citoyen »
1423937160000
    • Woebegone#8377
    • Profil
    • Derniers messages
    • Tribu
#78
  0
Slothingtonn a dit :
but what r u supposed to backspace out

Let's say you wanted to control me. You would replace "Tigrounette" with your username, Slothingtonn, and you would replace "Sydoline" with my username, Juliantwofan. This is what the top part of the script would look like:

-- Insert your victim's name (person who you would like to move) here without removing the quotation marks.
doll= "Juliantwofan"

-- Insert YOUR name here without removing the quotation marks.
god = "Slothingtonn"
-- That's it! Done! You can now run the script and troll people!
Imachipmunk
« Citoyen »
1423951140000
    • Imachipmunk#0000
    • Profil
    • Derniers messages
#79
  0
I wanna try this but, as i said before in a different thread, suck at lua. Also is there a version of the code without instructions? It doesn't work for me...

Dernière modification le 1423951200000
Cheetahkitty
« Citoyen »
1423973760000
    • Cheetahkitty#0000
    • Profil
    • Derniers messages
    • Tribu
#80
  1
O.o my tribe banned Lua because of this
  • Forums
  • /
  • Transformice
  • /
  • Modules
  • /
  • [Script] The Haunted Doll - Control Other Players
« ‹ 4 / 12 › »
© Atelier801 2018

Equipe Conditions Générales d'Utilisation Politique de Confidentialité Contact

Version 1.27