×

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
  • /
  • [مساعدة] الأخطاء
« ‹ 3 / 4 › »
[مساعدة] الأخطاء
Massi
« Consul »
1501153260000
    • Massi#0095
    • Profil
    • Derniers messages
    • Tribu
#41
  0
Nadagirlll a dit :
رائع جدا

شكرًا
Nanami
« Consul »
1501181040000
    • Nanami#9140
    • Profil
    • Derniers messages
#42
  0
Zagear a dit :
Nanamioo a dit :
ابسط مشكلة هي ان كود اعطاء الجبن والموت والفوز والخ لا يعملوا

ربما استعملتي الكود بدون إضافة علامتي التنصيص فاسم اللاعب يُعتبر نصّاً
Code Lua

1
tfm.exec.giveCheese("Nanamioo")

أجل لم أفعل ذلك xP< سأحاول مرة أخرى شكرًا لك !
Markovz
« Citoyen »
1501185960000
    • Markovz#0000
    • Profil
    • Derniers messages
    • Tribu
#43
  0
مشكور على الموضوع و مجهودك
Yandere_zineb
« Archonte »
1501197540000
    • Yandere_zineb#9920
    • Profil
    • Derniers messages
#44
  0
Thesadgirl a dit :
شكرا على الموضوع

ومبارك التثبيت
Ahmedaweeggo
« Citoyen »
1501545780000
    • Ahmedaweeggo#0000
    • Profil
    • Derniers messages
    • Tribu
#45
  0
اريد حل لهذا الكود
eventKhedive = function(isim)
isim = string.upper()
io.write(isim..'\n')
end
eventKhedive('Omar')
Jack_sparrow
« Censeur »
1501608300000
    • Jack_sparrow#8381
    • Profil
    • Derniers messages
    • Tribu
#46
  0
Ahmedaweeggo a dit :
اريد حل لهذا الكود
eventKhedive = function(isim)
isim = string.upper()
io.write(isim..'\n')
end
eventKhedive('Omar')

من فضلكَ ، هل يمكنكَ إعطائي الكود كاملاً لأتمكن من مساعدتك ؟
Ahmedaweeggo
« Citoyen »
1501608360000
    • Ahmedaweeggo#0000
    • Profil
    • Derniers messages
    • Tribu
#47
  0
Ahmedaweeggo a dit :
اريد حل لهذا الكود
eventKhedive = function(isim)
isim = string.upper()
io.write(isim..'\n')
end
eventKhedive('Omar')
والكود التانى
playerData={}
eventGetTribe = function(playerName)
playerData[playerName]=
{
tribeName = tfm.get.room.playerList[playerName].tribeName,
}
print('<R>'..playerName..'</R>\'s tribe : '..playerData[playerName].tribeName)
end
eventGetTribe('Khedive') -- result ???

function tfm:lol()
for scripts , types in pairs(_G.tfm) do
print(scripts..'('..type(types)..')')
end
end
tfm.lol() -- result ???
الكود صحيح، عليك
ارسال نتيجتة فانا كتبت print()
لا يعمل علي لوا ترانس بل انه لوا اصلية.

Dernière modification le 1501633800000
Nanami
« Consul »
1501727100000
    • Nanami#9140
    • Profil
    • Derniers messages
#48
  0
مبارك التثبيت.
Jack_sparrow
« Censeur »
1501781160000
    • Jack_sparrow#8381
    • Profil
    • Derniers messages
    • Tribu
#49
  1
Ahmedaweeggo a dit :
Ahmedaweeggo a dit :
اريد حل لهذا الكود
eventKhedive = function(isim)
isim = string.upper()
io.write(isim..'\n')
end
eventKhedive('Omar')
والكود التانى
playerData={}
eventGetTribe = function(playerName)
playerData[playerName]=
{
tribeName = tfm.get.room.playerList[playerName].tribeName,
}
print('<R>'..playerName..'</R>\'s tribe : '..playerData[playerName].tribeName)
end
eventGetTribe('Khedive') -- result ???

function tfm:lol()
for scripts , types in pairs(_G.tfm) do
print(scripts..'('..type(types)..')')
end
end
tfm.lol() -- result ???
الكود صحيح، عليك
ارسال نتيجتة فانا كتبت print()
لا يعمل علي لوا ترانس بل انه لوا اصلية.


الكود جاهز !! قُمتُ بإصلاحه

Code Lua

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
function eventKhedive(isim)
print(isim..'\n')
end

eventKhedive('Omar')

playerData={}
function eventGetTribe(name)
playerData[name]=
{tribeName = tfm.get.room.name:sub(3),}
print('<R>'..name..'</R>\'s tribe : '..playerData[name].tribeName)
end
eventGetTribe('Khedive') -- result

function tfm:lol()
for scripts , types in pairs(_G.tfm) do
print(scripts..'('..type(types)..')')
end
end
tfm.lol() -- result

استبدلت tfm.get.room.playerList[playerName].tribeNameبـ tfm.get.room.name:sub(3) واستبدلت ايضاً io.write بـ print

Dernière modification le 1501788300000
Ahmedaweeggo
« Citoyen »
1502193780000
    • Ahmedaweeggo#0000
    • Profil
    • Derniers messages
    • Tribu
#50
  0
الكود جاهز !! قُمتُ بإصلاحه

Code Lua

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
function eventKhedive(isim)
print(isim..'\n')
end

eventKhedive('Omar')

playerData={}
function eventGetTribe(name)
playerData[name]=
{tribeName = tfm.get.room.name:sub(3),}
print('<R>'..name..'</R>\'s tribe : '..playerData[name].tribeName)
end
eventGetTribe('Khedive') -- result

function tfm:lol()
for scripts , types in pairs(_G.tfm) do
print(scripts..'('..type(types)..')')
end
end
tfm.lol() -- result

استبدلت tfm.get.room.playerList[playerName].tribeNameبـ tfm.get.room.name:sub(3) واستبدلت ايضاً io.write بـ print

Zagear a dit :
Ahmedaweeggo a dit :
Ahmedaweeggo a dit :
اريد حل لهذا الكود
eventKhedive = function(isim)
isim = string.upper()
io.write(isim..'\n')
end
eventKhedive('Omar')
والكود التانى
playerData={}
eventGetTribe = function(playerName)
playerData[playerName]=
{
tribeName = tfm.get.room.playerList[playerName].tribeName,
}
print('<R>'..playerName..'</R>\'s tribe : '..playerData[playerName].tribeName)
end
eventGetTribe('Khedive') -- result ???

function tfm:lol()
for scripts , types in pairs(_G.tfm) do
print(scripts..'('..type(types)..')')
end
end
tfm.lol() -- result ???
الكود صحيح، عليك
ارسال نتيجتة فانا كتبت print()
لا يعمل علي لوا ترانس بل انه لوا اصلية.


الكود جاهز !! قُمتُ بإصلاحه

Code Lua

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
function eventKhedive(isim)
print(isim..'\n')
end

eventKhedive('Omar')

playerData={}
function eventGetTribe(name)
playerData[name]=
{tribeName = tfm.get.room.name:sub(3),}
print('<R>'..name..'</R>\'s tribe : '..playerData[name].tribeName)
end
eventGetTribe('Khedive') -- result

function tfm:lol()
for scripts , types in pairs(_G.tfm) do
print(scripts..'('..type(types)..')')
end
end
tfm.lol() -- result

استبدلت tfm.get.room.playerList[playerName].tribeNameبـ tfm.get.room.name:sub(3) واستبدلت ايضاً io.write بـ print

الكودين خطا يايسطا عرفت تصحيح الكود والتانى لا ههه انت لاتعرف التصحيح
Massi
« Consul »
1502572560000
    • Massi#0095
    • Profil
    • Derniers messages
    • Tribu
#51
  0
Ahmedaweeggo a dit :
الكود جاهز !! قُمتُ بإصلاحه

Code Lua

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
function eventKhedive(isim)
print(isim..'\n')
end

eventKhedive('Omar')

playerData={}
function eventGetTribe(name)
playerData[name]=
{tribeName = tfm.get.room.name:sub(3),}
print('<R>'..name..'</R>\'s tribe : '..playerData[name].tribeName)
end
eventGetTribe('Khedive') -- result

function tfm:lol()
for scripts , types in pairs(_G.tfm) do
print(scripts..'('..type(types)..')')
end
end
tfm.lol() -- result

استبدلت tfm.get.room.playerList[playerName].tribeNameبـ tfm.get.room.name:sub(3) واستبدلت ايضاً io.write بـ print

Zagear a dit :
Ahmedaweeggo a dit :
Ahmedaweeggo a dit :
اريد حل لهذا الكود
eventKhedive = function(isim)
isim = string.upper()
io.write(isim..'\n')
end
eventKhedive('Omar')
والكود التانى
playerData={}
eventGetTribe = function(playerName)
playerData[playerName]=
{
tribeName = tfm.get.room.playerList[playerName].tribeName,
}
print('<R>'..playerName..'</R>\'s tribe : '..playerData[playerName].tribeName)
end
eventGetTribe('Khedive') -- result ???

function tfm:lol()
for scripts , types in pairs(_G.tfm) do
print(scripts..'('..type(types)..')')
end
end
tfm.lol() -- result ???
الكود صحيح، عليك
ارسال نتيجتة فانا كتبت print()
لا يعمل علي لوا ترانس بل انه لوا اصلية.


الكود جاهز !! قُمتُ بإصلاحه

Code Lua

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
function eventKhedive(isim)
print(isim..'\n')
end

eventKhedive('Omar')

playerData={}
function eventGetTribe(name)
playerData[name]=
{tribeName = tfm.get.room.name:sub(3),}
print('<R>'..name..'</R>\'s tribe : '..playerData[name].tribeName)
end
eventGetTribe('Khedive') -- result

function tfm:lol()
for scripts , types in pairs(_G.tfm) do
print(scripts..'('..type(types)..')')
end
end
tfm.lol() -- result

استبدلت tfm.get.room.playerList[playerName].tribeNameبـ tfm.get.room.name:sub(3) واستبدلت ايضاً io.write بـ print

الكودين خطا يايسطا عرفت تصحيح الكود والتانى لا ههه انت لاتعرف التصحيح

تم تصحيح كل الأكواد, هناك أكواد أنت إستعملتها لا أعلم لماذا لكن المهم الكود يعمل جيدًا الان !
Code Lua

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
tribeOwner="Unlocker001" -- Name of the owner of tribe
function eventKhedive(name)
print(name.."\n")
end

eventKhedive("Omar")

playerData={}
function eventGetTribe(name)
playerData[name]={tribeName = tfm.get.room.name:sub(3),}
print('<R>'..name..'</R>\'s tribe : '..playerData[name].tribeName)
end
eventGetTribe(tribeOwner)

function tfm:lol()
for scripts , types in pairs(_G.tfm) do
print(scripts..'('..type(types)..')')
end
end

tfm:lol()
Ibrahim_984
« Citoyen »
1524254700000
    • Ibrahim_984#0000
    • Profil
    • Derniers messages
    • Tribu
#52
  0
السلام عليكم..

عندي مشكله ولصورة :http://prntscr.com/j7zod8

ولا اعرف كيف احلها بليز مساعدة .....
Jack_sparrow
« Censeur »
1524260640000
    • Jack_sparrow#8381
    • Profil
    • Derniers messages
    • Tribu
#53
  0
Ibrahim_984 a dit :
السلام عليكم..

عندي مشكله ولصورة :http://prntscr.com/j7zod8

ولا اعرف كيف احلها بليز مساعدة .....

مرحباً، هذا الموضوع للمساعدة في الأخطاء المتعلّقة بالبرمجيّات التركيبيّة، إذا كُنت تواجه مشكلة في الإتصال باللعبة اُكتب مشكلتك في هذا الموضوع وستم الرد عليك هُناك.
Raunbn
« Sénateur »
1524294480000
    • Raunbn#6072
    • Profil
    • Derniers messages
#54
  0
أريد سكربت جيد
Ace
« Consul »
1541250420000
    • Ace#1270
    • Profil
    • Derniers messages
#55
  0
حُلت المُشكلة.

Dernière modification le 1541256660000
Uvfn
« Censeur »
1542393540000
    • Uvfn#0095
    • Profil
    • Derniers messages
    • Tribu
#56
  0
شكرا علي الموضوع.
Luffy
1561492740000
    • Luffy#9567
    • Profil
    • Derniers messages
#57
[Modéré par Beauty_queen, raison : خارج عن سياق الموضوع ، توجه لموضوع : طلب لعبةٍ صغيرةٍ !]

Dernière modification le 1561497060000
Alaa23
1622723640000
    • Alaa23#1107
    • Profil
    • Derniers messages
    • Tribu
#58
[Modéré par Uvfn, raison : يرجى عدم الخروج عن سياق الموضوع.]
Alaa23
1622723760000
    • Alaa23#1107
    • Profil
    • Derniers messages
    • Tribu
#59
[Modéré par Uvfn, raison : يرجى عدم الخروج عن سياق الموضوع.]
Alaa23
1622723760000
    • Alaa23#1107
    • Profil
    • Derniers messages
    • Tribu
#60
[Modéré par Uvfn, raison : يرجى عدم الخروج عن سياق الموضوع.]
  • Forums
  • /
  • Transformice
  • /
  • Modules
  • /
  • [مساعدة] الأخطاء
« ‹ 3 / 4 › »
© Atelier801 2018

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

Version 1.27