Author Topic: Request: Name identifiers for server rank status.  (Read 1068 times)

0 Members and 1 Guest are viewing this topic.

Offline ZackLabel

  • Newbie
  • *
  • Posts: 14
  • Karma: +0/-0
    • View Profile
Request: Name identifiers for server rank status.
« on: June 16, 2010, 03:31:27 PM »
Okay the title sucks.

What I am suggesting is implementing some sort of way to know if another player on a server is respected, admin, etc. This will probably prevent some quarrels that may occur due to not knowing a minge is actually a fellow RND member or admin having fun.

Offline Frank

  • No.
  • WaffleBBQrz
  • ******
  • Posts: 4058
  • Karma: +94/-45
  • Gender: Male
    • View Profile
Re: Request: Name identifiers for server rank status.
« Reply #1 on: June 16, 2010, 03:51:40 PM »
Okay the title sucks.

What I am suggesting is implementing some sort of way to know if another player on a server is respected, admin, etc. This will probably prevent some quarrels that may occur due to not knowing a minge is actually a fellow RND member or admin having fun.

If it's a minge, it's a minge. It doesn't matter if it's respected, admin, super admin, or whatever.
Plus, I think the anonimity helps keeping servers better. You can punish minges better if they don't know you are respected.

Offline Shawn

  • Übermensch
  • *****
  • Posts: 1080
  • Karma: +13/-3
  • Gender: Male
  • IGM: Shawn /Steam ID: Shawnchapp02
    • View Profile
Re: Request: Name identifiers for server rank status.
« Reply #2 on: June 16, 2010, 04:20:36 PM »
If it's a minge, it's a minge. It doesn't matter if it's respected, admin, super admin, or whatever.

Oh really? Try kicking an admin for being a minge You'll find yourself kicked and respectless after that.
Any man who knows a thing knows
He knows not a damn, damn thing at all
And every time I felt the hurt
And I felt the givin' gettin' me up off the wall


Offline Frank

  • No.
  • WaffleBBQrz
  • ******
  • Posts: 4058
  • Karma: +94/-45
  • Gender: Male
    • View Profile
Re: Request: Name identifiers for server rank status.
« Reply #3 on: June 16, 2010, 07:08:24 PM »
Oh really? Try kicking an admin for being a minge You'll find yourself kicked and respectless after that.
That doesn't mean anything. He can be whatever, but he will still be a minge.

Offline Boat Sinker

  • Buddhist
  • Übermensch
  • *****
  • Posts: 827
  • Karma: +30/-40
  • Gender: Male
  • Ohai
    • View Profile
    • youtube.com/bowlingfreak218
Re: Request: Name identifiers for server rank status.
« Reply #4 on: June 17, 2010, 12:29:27 PM »
yeah this has been mentioned in the passed. a vip slot is existant but not in use. perhaps that can be used for respected. frank kinda has a point of making the respected anonymous by not using it. but i would say i would like to add the respected slot

Offline ZackLabel

  • Newbie
  • *
  • Posts: 14
  • Karma: +0/-0
    • View Profile
Re: Request: Name identifiers for server rank status.
« Reply #5 on: June 27, 2010, 05:42:51 PM »
How about just using ULX for the servers?

Offline Frank

  • No.
  • WaffleBBQrz
  • ******
  • Posts: 4058
  • Karma: +94/-45
  • Gender: Male
    • View Profile
Re: Request: Name identifiers for server rank status.
« Reply #6 on: June 27, 2010, 06:44:29 PM »
How about no?

Offline Sanders

  • THIS IS MY FINAL FORM
  • Übermensch
  • *****
  • Posts: 794
  • Karma: +37/-21
  • Gender: Male
  • BAHAHAHAHAHAHAH!
    • View Profile
Re: Request: Name identifiers for server rank status.
« Reply #7 on: June 27, 2010, 06:53:05 PM »


Offline Tomcat

  • Smartical
  • Übermensch
  • *****
  • Posts: 1694
  • Karma: +42/-13
  • Gender: Male
  • OMG IS DAT A CHEEZEBURGER
    • View Profile
    • Rnd Upload
Re: Request: Name identifiers for server rank status.
« Reply #8 on: June 27, 2010, 09:10:29 PM »
ill start coding one up it will take 2-3 bissness days + shipping to paste bin costs lol

Quote
Andrew: your mom spazzes
.:RND`=- Tomcat: not me
Tomcat: andrew
Tomcat: dont go there
.:RND`=- Tomcat: i will rape you all they way back to 1980

Offline Tomcat

  • Smartical
  • Übermensch
  • *****
  • Posts: 1694
  • Karma: +42/-13
  • Gender: Male
  • OMG IS DAT A CHEEZEBURGER
    • View Profile
    • Rnd Upload
Re: Request: Name identifiers for server rank status.
« Reply #9 on: June 29, 2010, 02:27:08 PM »
Code: [Select]

if (SERVER) then
AddCSLuaFile("autorun/tags.lua")
end
//Look at end for Info to add custom titles
if (CLIENT) then
function Insert( pl, msg )
local tab = {}//Insert after here
if pl:HasLevel(0) then
table.insert( tab, Color( 255, 0, 0, 255 ) )
table.insert( tab, "(Owner) " )
table.insert( tab, Color( 255, 255, 255, 255 ) )
table.insert( tab, pl )
table.insert( tab, ": " )
table.insert( tab, msg )
elseif pl:HasLevel(1) then
table.insert( tab, Color( 255, 0, 0, 255 ) )
table.insert( tab, "(Admin) " )
table.insert( tab, Color( 255, 255, 255, 255 ) )
table.insert( tab, pl )
table.insert( tab, ": " )
table.insert( tab, msg )
elseif pl:HasLevel(2) then
table.insert( tab, Color( 255, 144, 0, 255 ) )
table.insert( tab, "(Super Admin) " )
table.insert( tab, Color( 255, 255, 255, 255 ) )
table.insert( tab, pl )
table.insert( tab, ": " )
table.insert( tab, msg )
elseif pl:HasLevel(4) then
table.insert( tab, Color( 0, 0, 255, 255 ) )
table.insert( tab, "(Respected) " )
table.insert( tab, Color( 255, 255, 255, 255 ) )
table.insert( tab, pl )
table.insert( tab, ": " )
table.insert( tab, msg )
else
table.insert( tab, Color( 255, 255, 255, 255 ) )
table.insert( tab, "(Temp Admin) " )
table.insert( tab, Color( 255, 255, 255, 255 ) )
table.insert( tab, pl )
table.insert( tab, ": " )
table.insert( tab, msg )
end
chat.AddText( unpack(tab) )
return true
end
end
hook.Add("OnPlayerChat", "InsertTags", Insert)
 
/*############################Script By Tomcat############################
##################Made For .:`=-~rANdOm~`-=:. Game Servers################
VVVVVVVVVVVVVVVVVVVVVVVV INFO FOR ADDING DOWN HERE VVVVVVVVVVVVVVVVVVVVVVVV
 
elseif pl:SteamID() == "I PUT SHOES' HERE" then //add something like steamid or other custom shit
table.insert( tab, Color( 0, 0, 255, 255 ) ) //Title color
table.insert( tab, "(Title) " )
table.insert( tab, Color( 255, 255, 255, 255 ) ) //chat color
table.insert( tab, pl )
table.insert( tab, ": " )
table.insert( tab, msg )
*/

now where is my s&h costs eh pay up zach

Quote
Andrew: your mom spazzes
.:RND`=- Tomcat: not me
Tomcat: andrew
Tomcat: dont go there
.:RND`=- Tomcat: i will rape you all they way back to 1980

Offline ronny

  • Newbie
  • *
  • Posts: 17
  • Karma: +1/-2
    • View Profile
Re: Request: Name identifiers for server rank status.
« Reply #10 on: June 29, 2010, 05:39:38 PM »
now where is my s&h costs eh pay up zach

Nice work.

Offline x???x

  • Sr. Member
  • ****
  • Posts: 290
  • Karma: +1/-6
  • Gender: Male
  • Can't think of a good personal text.
    • View Profile
Re: Request: Name identifiers for server rank status.
« Reply #11 on: June 29, 2010, 11:11:32 PM »
There is an addon like that, I have it too. Should i post the link?

Quote
x???x: buy the bugbait
[XF49_90*2=3-2]Faggottron 3000: HMM OK

Offline SabbathFreak911

  • Übermensch
  • *****
  • Posts: 1480
  • Karma: +68/-90
  • Gender: Male
  • Stop drop and ROFL!
    • View Profile
    • Orsa
Re: Request: Name identifiers for server rank status.
« Reply #12 on: June 29, 2010, 11:47:42 PM »
Lol ulx...

Offline Tomcat

  • Smartical
  • Übermensch
  • *****
  • Posts: 1694
  • Karma: +42/-13
  • Gender: Male
  • OMG IS DAT A CHEEZEBURGER
    • View Profile
    • Rnd Upload
Re: Request: Name identifiers for server rank status.
« Reply #13 on: June 30, 2010, 12:23:22 PM »
There is an addon like that, I have it too. Should i post the link?




Its pretty much the same as that lol


I did it the way i was taught

Quote
Andrew: your mom spazzes
.:RND`=- Tomcat: not me
Tomcat: andrew
Tomcat: dont go there
.:RND`=- Tomcat: i will rape you all they way back to 1980

Offline coolzeldad

  • Zagnipple
  • Administrator
  • Übermensch
  • *****
  • Posts: 1343
  • Karma: +95/-11
  • mhmmz
    • View Profile
    • .:`=-~rANdOm~`-=:.
Re: Request: Name identifiers for server rank status.
« Reply #14 on: July 02, 2010, 05:32:34 PM »
Tomcat gave this to me and I think it's a good idea!

Expect Country code identifiers soon as well :D
-coolz
"The masses are asses" - Thomas Jefferson

.:~RND`=- Devie ♥: IM WATCHING BABIES

When people ask me "Plz" just because it's shorter than "Please" I feel perfectly justified to answer "No" because it's shorter then "Yes"