v getname ?

  • Initiateur de la discussion
thepsyca

thepsyca

Psychopathe
Messages
2 164
Score réaction
648
Points
365
Bonsoir,

J'aimerai get "name" / "texte" comme bon vous voulez l'entendre de V dans la fonction suivante pour en faire une DListView répertorié par nom.

Code:
net.Receive("findbotdata", function(len, pl) for k, v in pairs(file.Find("nlf/" .. string.lower(game.GetMap()) .. "/*.txt", "DATA")) do net.Start( "sendbotdata" ) net.WriteString(tostring(v)) net.Send(pl) end
end)
Une idée ?;)

Exemple :
Code:
Fichier existant sur le serveur :
"nlf/" .. string.lower(game.GetMap()) .. "/botmaison.txt"
"nlf/" .. string.lower(game.GetMap()) .. "/botvillage.txt"
Output :
botmaison
botvillage
 
Dernière édition:
Jenni Gort

Jenni Gort

Geek suprême
Messages
207
Score réaction
67
Points
130
thepsyca à dit:
Bonsoir,

J'aimerai get "name" / "texte" comme bon vous voulez l'entendre de V dans la fonction suivante pour en faire une DListView répertorié par nom.

Code:
net.Receive("findbotdata", function(len, pl) for k, v in pairs(file.Find("nlf/" .. string.lower(game.GetMap()) .. "/*.txt", "DATA")) do net.Start( "sendbotdata" ) net.WriteString(tostring(v)) net.Send(pl) end
end)
Une idée ?;)
Essaye d'etre plus précis j'ai rien compris NinjaTroll
 
  • Initiateur de la discussion
thepsyca

thepsyca

Psychopathe
Messages
2 164
Score réaction
648
Points
365
Jenni Gort à dit:
Essaye d'etre plus précis j'ai rien compris NinjaTroll
J'ai EDIT avec un petit exemple ^^
 
Jenni Gort

Jenni Gort

Geek suprême
Messages
207
Score réaction
67
Points
130
thepsyca à dit:
J'ai EDIT avec un petit exemple ^^
je croi que je comprend toujour pas ^^'
tu veut transformé ce string : "nlf/" .. string.lower(game.GetMap()) .. "/botvillage.txt"
en ce string "botvillage" ?
 
  • Initiateur de la discussion
thepsyca

thepsyca

Psychopathe
Messages
2 164
Score réaction
648
Points
365
Jenni Gort à dit:
je croi que je comprend toujour pas ^^'
tu veut transformé ce string : "nlf/" .. string.lower(game.GetMap()) .. "/botvillage.txt"
en ce string "botvillage" ?
En gros oui mais je veux que sa soit opti pour n'importe quel nom :D
 
Jenni Gort

Jenni Gort

Geek suprême
Messages
207
Score réaction
67
Points
130
thepsyca à dit:
En gros oui mais je veux que sa soit opti pour n'importe quel nom :D
tente sa : ( J'ai pas test mes normalement sa devrez fonctionné ^^)
Code:
net.Receive("findbotdata", function(len, pl)
for k, v in pairs(file.Find("nlf/" .. string.lower(game.GetMap()) .. "/*.txt", "DATA")) do
local string_sub1 = string.gsub(tostring(v), "nlf/" .. string.lower(game.GetMap()) .. "/", "" )
local string_sub2 = string.gsub(string_sub1, ".txt", "" )
net.Start( "sendbotdata" )
net.WriteString(string_sub2)
net.Send(pl)
end
end)
 
  • J'aime
Réactions: thepsyca
  • Initiateur de la discussion
thepsyca

thepsyca

Psychopathe
Messages
2 164
Score réaction
648
Points
365
Jenni Gort à dit:
tente sa : ( J'ai pas test mes normalement sa devrez fonctionné ^^)
Code:
net.Receive("findbotdata", function(len, pl)
for k, v in pairs(file.Find("nlf/" .. string.lower(game.GetMap()) .. "/*.txt", "DATA")) do
local string_sub1 = string.gsub(tostring(v), "nlf/" .. string.lower(game.GetMap()) .. "/", "" )
local string_sub2 = string.gsub(string_sub1, ".txt", "" )
net.Start( "sendbotdata" )
net.WriteString(string_sub2)
net.Send(pl)
end
end)
Yes, fonctionnel merci :p
 
Jenni Gort

Jenni Gort

Geek suprême
Messages
207
Score réaction
67
Points
130
ZarosOVH

ZarosOVH

Modérateur
Membre du Staff
Messages
6 527
Score réaction
5 488
Points
1 295
Jenni Gort à dit:
Content de t'avoir aidé ;)
Moi j'ai tjs pas compris ce qu'il voulais xDDD
 
  • J'aime
Réactions: Jenni Gort
Discord d'entraide
Rejoignz-nous sur Discord