Meama, nush cum am ajuns iar aici dupa 7 ani de cand n-am mai jucat si dupa 11 ani de cand m-am jucat prima oara.
Ma mir ca inca merge MTA-ul in Romania, si ma bucur intr-un fel.
Am venit doar sa va salut, si pentru OG-ii vechi care ma mai tin minte, "cum mai e viata? Axel mai traieste? mai bantuie pe aici? =)))"
https://community.multitheftauto.com/index.php?p=resources&s=details&id=14511
Leaked script from an old server of mine (Valhalla Roleplay Based), dunno how on earth he got it...
RESPONSE: Lack of evidence on the source, or any clue it has even been part of your server. Because it's not part of the standards vG leaks (as you already stated) you gotta provide some sort of additional evidence.
Hi, so it's been a while since I've used this... How can I check if a string has special characters like /\';"£$!@~ etc and also numbers? I need the string to only be a string of letters.
I tried this but the name can still have / in it when the string is "MyString/"
local function checkValidCharacterName(theText)
if(string.find ( theText, "[^a-zA-Z]")) then
return false
else
return true
end
end
Thanks.
If the user's ID is in one of the groups, it shows the outputChatBox with the name of that group, but also Civilian...
Life, I have 3 groups ("Founder", "Admin" and "Scripter") and if I put my ID in "Scripter" the chatbox is like this:
Civilian| ..:D&G:.. says: Hello world! -- Founder Group
Civilian| ..:D&G:.. says: Hello world! -- Admin Group
Scripter| ..:D&G:.. says: Hello world! -- Scripter Group (My ID is in this group only)
But how about the IDs of the players from ids = {}?
I need to check if the player has his ID in any of the groups because if the player is not in one of the groups, the outputChatBox should be like this:
for _,group in pairs(groups) do
local r,g,b = unpack(group.RGB)
if (playerID == (one of the ids from ids = {}) then
outputChatBox( group.name.." ..:D%G:.. says: Hello World", r, g, b )
else
outputChatBox("Civilian | ..:D%G:.. says: Hello World", 255, 255, 0 )
end
end
Thanks.