×

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
  • /
  • Lua Kodları Tartışma & Yardımlaşma Başlığı
« ‹ 176 / 388 › »
Lua Kodları Tartışma & Yardımlaşma Başlığı
Oyga
« Citoyen »
1401025380000
    • Oyga#0000
    • Profil
    • Derniers messages
    • Tribu
#3501
  0
FFA gibi lazım mı?
Dinorai
« Citoyen »
1401025500000
    • Dinorai#0000
    • Profil
    • Derniers messages
#3502
  0
Oyga a dit :
FFA gibi lazım mı?

özür ama sadece sağa atıyo :(
Oyga
« Citoyen »
1401025500000
    • Oyga#0000
    • Profil
    • Derniers messages
    • Tribu
#3503
  0
Yapıyorum hemen...
Dinorai
« Citoyen »
1401025620000
    • Dinorai#0000
    • Profil
    • Derniers messages
#3504
  0
Oyga a dit :

Yapıyorum hemen...

saol çok yardımcı oluyosun :)
Oyga
« Citoyen »
1401025620000
    • Oyga#0000
    • Profil
    • Derniers messages
    • Tribu
#3505
  0
for n in pairs(tfm.get.room.playerList) do
tfm.exec.bindKeyboard(n, 32, true, true)
end

function eventKeyboard(n, key, down, x, y)
if key==32 then
if tfm.get.room.playerList[n].isFacingRight then
tfm.exec.addShamanObject(35,x+7,y,0,20)
else
tfm.exec.addShamanObject(35,x-7,y,180,-20)
end
end
end
Botcampkasar
« Citoyen »
1401026160000
    • Botcampkasar#0000
    • Profil
    • Derniers messages
    • Tribu
#3506
  0
Oyga a dit :
for n in pairs(tfm.get.room.playerList) do
tfm.exec.bindKeyboard(n, 32, true, true)
end

function eventKeyboard(n, key, down, x, y)
if key==32 then
if tfm.get.room.playerList[n].isFacingRight then
tfm.exec.addShamanObject(35,x+7,y,0,20)
else
tfm.exec.addShamanObject(35,x-7,y,180,-20)
end
end
end

Ayarlarıyla oynadım buz yağdırıo şimdi

for n in pairs(tfm.get.room.playerList) do
tfm.exec.bindKeyboard(n, 32, true, true)
end

function eventKeyboard(n, key, down, x, y)
if key==32 then
if tfm.get.room.playerList[n].isFacingRight then
tfm.exec.addShamanObject(45,x+10,y,0,20)
else
tfm.exec.addShamanObject(45,x-10,y,180,-20)
end
end
end
Emrevegolxd
« Citoyen »
1401026400000
    • Emrevegolxd#0000
    • Profil
    • Derniers messages
#3507
  0
Emrevegolxd a dit :
Bana !modlist Yazınca Oyun Adminlerini Görme Kodunu Verirmisiniz Ama Herkez .!modlist yazınca görebilir ?

<
Oyga
« Citoyen »
1401026640000
    • Oyga#0000
    • Profil
    • Derniers messages
    • Tribu
#3508
  0
admins={"Oyga","Emrevegolxd"}

function eventChatCommand(n,cmd)
if cmd=="modlist"then
print("<V>"..table.concat(admins," <G>- <V>"))
end
end
Ipzey
« Citoyen »
1401026640000
    • Ipzey#0000
    • Profil
    • Derniers messages
#3509
  0
Oyga a dit :
admins={"Oyga","Emrevegolxd"}

function eventChatCommand(n,cmd)
if cmd=="modlist"then
print("&lt;V&gt;"..table.concat(admins," &lt;G&gt;- &lt;V&gt;"))
end
end

popuplada olmuyomu benim bildiğim
Botcampkasar
« Citoyen »
1401027060000
    • Botcampkasar#0000
    • Profil
    • Derniers messages
    • Tribu
#3510
  0
for n in pairs(tfm.get.room.playerList) do
tfm.exec.bindKeyboard(n, 32, true, true)
end

function eventKeyboard(n, key, down, x, y)
if key==32 then
if tfm.get.room.playerList[n].isFacingRight then
tfm.exec.addShamanObject(40,x+10,y,0,20)
else
tfm.exec.addShamanObject(40,x-10,y,180,-20)
end
end
end

bu kodda obje atmanın süresini naıl ayarlıyabilirim ve de hem boşluk hem de eğilme tuşuyla atmasını istiyorum.
Oyga
« Citoyen »
1401027180000
    • Oyga#0000
    • Profil
    • Derniers messages
    • Tribu
#3511
  0
tfm.exec.bindKeyboard(n, 32, true, true)
tfm.exec.bindKeyboard(n, 40, true, true)

-

if key==32 or key==40 then
Neonstrayzer
« Citoyen »
1401027300000
    • Neonstrayzer#0000
    • Profil
    • Derniers messages
    • Tribu
#3512
  0
egilmetuslari={32,40,98,83}
for n in pairs(tfm.get.room.playerList) do
for _,key in pairs(egilmetuslari) do
tfm.exec.bindKeyboard(n, key, true, true)
end
end

function eventKeyboard(n, key, down, x, y)
if egilmetuslari[key] then
if tfm.get.room.playerList[n].isFacingRight then
tfm.exec.addShamanObject(40,x+10,y,0,20)
else
tfm.exec.addShamanObject(40,x-10,y,180,-20)
end
end
end
Botcampkasar
« Citoyen »
1401027660000
    • Botcampkasar#0000
    • Profil
    • Derniers messages
    • Tribu
#3513
  0
Neonstrayzer a dit :
egilmetuslari={32,40,98,83}
for n in pairs(tfm.get.room.playerList) do
for _,key in pairs(egilmetuslari) do
tfm.exec.bindKeyboard(n, key, true, true)
end
end

function eventKeyboard(n, key, down, x, y)
if egilmetuslari[key] then
if tfm.get.room.playerList[n].isFacingRight then
tfm.exec.addShamanObject(40,x+10,y,0,20)
else
tfm.exec.addShamanObject(40,x-10,y,180,-20)
end
end
end

Çalışmıyor :(
Enesxfbxpro
« Censeur »
1401027840000
    • Enesxfbxpro#0000
    • Profil
    • Derniers messages
    • Tribu
#3514
  0
Bi kod isticem ama veren vrirmisiniz

Sihir oluşturduğumuzda diğer fareler o sihiri göremeyecek diye bir kod var mı :P
Botcampkasar
« Citoyen »
1401027840000
    • Botcampkasar#0000
    • Profil
    • Derniers messages
    • Tribu
#3515
  0
Enesxfbxpro a dit :
Bi kod isticem ama veren vrirmisiniz

Sihir oluşturduğumuzda diğer fareler o sihiri göremeyecek diye bir kod var mı :P

/feu ben bir tek bunu biliom :D
Enesxfbxpro
« Censeur »
1401027960000
    • Enesxfbxpro#0000
    • Profil
    • Derniers messages
    • Tribu
#3516
  0
Botcampkasar a dit :


/feu ben bir tek bunu biliom :D

Olduda diğer fare , sihir yaratan farenin sihirine gidebiliyor
Oyga
« Citoyen »
1401028200000
    • Oyga#0000
    • Profil
    • Derniers messages
    • Tribu
#3517
  0
for n in pairs(tfm.get.room.playerList) do
for t,tus in pairs({32,40,83,98}) do
tfm.exec.bindKeyboard(n, tus, true, true)
end
end


function eventKeyboard(n, key, d, x, y)
if key==32 or key==40 or key==83 or key==98 then
if tfm.get.room.playerList[n].isFacingRight then
tfm.exec.addShamanObject(40,x+10,y,0,20)
else
tfm.exec.addShamanObject(40,x-10,y,180,-20)
end
end
end
Katilcekirde
« Citoyen »
1401028200000
    • Katilcekirde#0000
    • Profil
    • Derniers messages
    • Tribu
#3518
  0
afk ölümü kapatma kodunu verirmisiniz acil
Oyga
« Citoyen »
1401028200000
    • Oyga#0000
    • Profil
    • Derniers messages
    • Tribu
#3519
  0
Topic-462915
Enesxfbxpro
« Censeur »
1401028320000
    • Enesxfbxpro#0000
    • Profil
    • Derniers messages
    • Tribu
#3520
  0
Oyga a dit :
for n in pairs(tfm.get.room.playerList) do
for t,tus in pairs({32,40,83,98}) do
tfm.exec.bindKeyboard(n, tus, true, true)
end
end


function eventKeyboard(n, key, d, x, y)
if key==32 or key==40 or key==83 or key==98 then
if tfm.get.room.playerList[n].isFacingRight then
tfm.exec.addShamanObject(40,x+10,y,0,20)
else
tfm.exec.addShamanObject(40,x-10,y,180,-20)
end
end
end

Ulan oyga :D
  • Forums
  • /
  • Transformice
  • /
  • Modules
  • /
  • Lua Kodları Tartışma & Yardımlaşma Başlığı
« ‹ 176 / 388 › »
© Atelier801 2018

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

Version 1.27