This commit is contained in:
parent
144d33bbe7
commit
691ce8f01a
|
|
@ -71,8 +71,8 @@ game.Players.FriendRequestEvent:connect(function(fromPlayer,toPlayer,event)
|
|||
|
||||
if fromPlayer == localPlayer then
|
||||
if event == Enum.FriendRequestEvent.Accept then
|
||||
game:GetService("GuiService"):SendNotification("You are Friends",
|
||||
"With " .. toPlayer.Name .. "!",
|
||||
game:GetService("GuiService"):SendNotification("Frined Joined",
|
||||
toPlayer.Name,
|
||||
"http://www.morblox.us/thumbs/avatar.ashx?userId="..tostring(toPlayer.userId).."&x=48&y=48",
|
||||
5,
|
||||
function()
|
||||
|
|
@ -83,15 +83,15 @@ game.Players.FriendRequestEvent:connect(function(fromPlayer,toPlayer,event)
|
|||
if event == Enum.FriendRequestEvent.Issue then
|
||||
if friendRequestBlacklist[fromPlayer] then return end -- previously cancelled friend request, we don't want it!
|
||||
game:GetService("GuiService"):SendNotification("Friend Request",
|
||||
"From " .. fromPlayer.Name,
|
||||
"from " .. fromPlayer.Name,
|
||||
"http://www.morblox.us/thumbs/avatar.ashx?userId="..tostring(fromPlayer.userId).."&x=48&y=48",
|
||||
8,
|
||||
function()
|
||||
makeFriend(fromPlayer,toPlayer)
|
||||
end)
|
||||
elseif event == Enum.FriendRequestEvent.Accept then
|
||||
game:GetService("GuiService"):SendNotification("You are Friends",
|
||||
"With " .. fromPlayer.Name .. "!",
|
||||
game:GetService("GuiService"):SendNotification("Friend Request Accepted",
|
||||
fromPlayer.Name .. " is now your friend!",
|
||||
"http://www.morblox.us/thumbs/avatar.ashx?userId="..tostring(fromPlayer.userId).."&x=48&y=48",
|
||||
5,
|
||||
function()
|
||||
|
|
|
|||
|
|
@ -261,7 +261,7 @@ local Chat = {
|
|||
},
|
||||
['Games'] = {'/sc 6_4', true,
|
||||
['Action'] = true, ['Puzzle'] = true, ['Strategy'] = true, ['Racing'] = true, ['RPG'] = true, ['Obstacle Course'] = true, ['Tycoon'] = true,
|
||||
['Roblox'] = { ['BrickBattle'] = true, ['Community Building'] = true, ['Roblox Minigames'] = true, ['Contest Place'] = true},
|
||||
['ARCHBLOX'] = { ['BrickBattle'] = true, ['Community Building'] = true, ['ARCHBLOX Minigames'] = true, ['Contest Place'] = true},
|
||||
['Board games'] = { ['Chess'] = true, ['Checkers'] = true, ['Settlers of Catan'] = true, ['Tigris and Euphrates'] = true, ['El Grande'] = true,
|
||||
['Stratego'] = true, ['Carcassonne'] = true}
|
||||
},
|
||||
|
|
@ -349,7 +349,12 @@ local Chat = {
|
|||
['GET OFF MAH LAWN'] = true,
|
||||
['TEH EPIK DUCK IS COMING!!!'] = true,
|
||||
['ROFL'] = true,
|
||||
['1337'] = {true, ['i r teh pwnz0r!'] = true, ['w00t!'] = true, ['z0mg h4x!'] = true, ['ub3rR0xXorzage!'] = true}
|
||||
['1337'] = {true, ['i r teh pwnz0r!'] = true, ['w00t!'] = true, ['z0mg h4x!'] = true, ['ub3rR0xXorzage!'] = true},
|
||||
['It\'s Morbin Time!'] = true,
|
||||
['What\'s 9+10.'] = true,
|
||||
['19'] = true,
|
||||
['21'] = true,
|
||||
['You stupid.'] = true,
|
||||
},
|
||||
['Yes'] = {
|
||||
['Absolutely!'] = true,
|
||||
|
|
@ -397,7 +402,10 @@ local Chat = {
|
|||
['^_^'] = true,
|
||||
['<(0_0<) <(0_0)> (>0_0)> KIRBY DANCE'] = true,
|
||||
[')\';'] = true,
|
||||
[':3'] = true
|
||||
[':3'] = true,
|
||||
['3:'] = true,
|
||||
['>:3'] = true,
|
||||
['3:<'] = true
|
||||
},
|
||||
['Ratings'] = {
|
||||
['Rate it!'] = true,
|
||||
|
|
|
|||
Loading…
Reference in New Issue