Author Topic: Cry Chat  (Read 6369 times)

0 Members and 2 Guests are viewing this topic.

Offline Sjitty

  • SA-MP Retirees
  • *
  • *
  • Posts: 190
    • Awards
Cry Chat
« on: August 08, 2010, 11:15:44 AM »
Ellow, this little suggestion for admin command:

SUMMARY

/cry <playerid>

This command toggles cry chat mode for the player. This means everything this player now says goes in seperate chat instead of public chat. Only other player who r put in this chat can read and respond to this crying conversation.

Example:

PUBLIC CHAT
[X]Y (id 5): OMFG u noob db'er!
[A]B (id 10): You runner!! u do 3vs1 u can only win like that,.

/cry 5
/cry 10

PUBLIC CHAT
[silence]

CRY CHAT

[X]Y (id 5):Floorshooter, backdoorshooter!!
[A]B (id 10): Come DA u scared?? yo momma fuck i do jaja blablablaaa

ADVANTAGES

Quiet public chat, no crying kidz, still they dont have to be muted and can cry to one another i n cry chat.

DISADVANTAGES

More crying???

CODE

new CryChat[MAX_PLAYERS];

dcmd_cry(playerid,params[])
{
    new cryplayerid;
      if (sscanf(params, "i",cryplayerid)) SendClientMessage(playerid, YELLOW, "Usage: \"/cry <playerid>\"");
   else
   {
             CryChat[cryplayerid]=1;
   }
   return 1;
}
dcmd_uncry(playerid,params[])
{
    new cryplayerid;
      if (sscanf(params, "i",cryplayerid)) SendClientMessage(playerid, YELLOW, "Usage: \"/uncry <playerid>\"");
   else
   {
             CryChat[cryplayerid]=0;
   }
   return 1;
}


public OnPlayerText(playerid, text[])
{
   if(CryChat[playerid]==1)
   {
      for(new i,a = GetMaxPlayers();i < a;i++)
      {
         if(CryChat[ i ]==1)
         {
            SendClientMessage(i, COLOR_RED, text);
            return 0;
         }
      }
   }
   else
   {
      return 1;
   }
}
« Last Edit: August 08, 2010, 11:31:32 AM by Sjitty »

Offline mayhem

  • SA-MP Retirees
  • *
  • *
  • *
  • Posts: 2020
    • Awards
Re: Cry Chat
« Reply #1 on: August 08, 2010, 11:19:24 AM »
Seems cool , +1.

Offline SRC

  • SA-MP Donator
  • *
  • Posts: 559
  • Copac Founder !
    • Awards
Re: Cry Chat
« Reply #2 on: August 08, 2010, 11:36:30 AM »
nice +1  ;D  /cry

Offline [Cheetos]

  • SA-MP Donator
  • *
  • Posts: 702
  • "I never think of the future,It comes soon enough"
    • Awards
Re: Cry Chat
« Reply #3 on: August 08, 2010, 11:43:09 AM »
nice but sometimes i like to see ppl getting rage!: D

Offline Sjitty

  • SA-MP Retirees
  • *
  • *
  • Posts: 190
    • Awards
Re: Cry Chat
« Reply #4 on: August 08, 2010, 11:46:37 AM »
Quote
nice but sometimes i like to see ppl getting rage!: D

You can always request to join that chat :)

Offline Disco

  • SA-MP Donator
  • *
  • Posts: 1478
  • .
    • Awards
Re: Cry Chat
« Reply #5 on: August 08, 2010, 11:46:44 AM »
it will be the most abused admin cmd ...
And before you suggest sth for admin cmds, suggest sth that there are more admins on...

-1

Offline AJP

  • SA-MP Retirees
  • *
  • *
  • Posts: 4900
  • N1158Q
    • Awards
Re: Cry Chat
« Reply #6 on: August 08, 2010, 11:53:06 AM »
don't like it. people who cry shouldn't get their own private chat, they should simply be muted.

Offline Sjitty

  • SA-MP Retirees
  • *
  • *
  • Posts: 190
    • Awards
Re: Cry Chat
« Reply #7 on: August 08, 2010, 12:28:21 PM »
Quote
don't like it. people who cry shouldn't get their own private chat, they should simply be muted.

We are still dealing with kids playing a game scott, u cant tell kids not to cry, u just put them in seperate room to play there if they annoy you. It is normal that they cry and stuff, thats why i dont want to mute them, but just remove them from public chat, let them be kids.
« Last Edit: August 08, 2010, 12:31:27 PM by Sjitty »

Offline [Cheetos]

  • SA-MP Donator
  • *
  • Posts: 702
  • "I never think of the future,It comes soon enough"
    • Awards
Re: Cry Chat
« Reply #8 on: August 08, 2010, 12:35:32 PM »
Quote
don't like it. people who cry shouldn't get their own private chat, they should simply be muted.

We are still dealing with kids playing a game scott, u cant tell kids not to cry, u just put them in seperate room to play there if they annoy you. It is normal that they cry and stuff, thats why i dont want to mute them, but just remove them from public chat, let them be kids.
thats kinda /ignore cmd
if its get scripted so we can use it whenever we want to stop crying/flamming.... etc

Offline Sjitty

  • SA-MP Retirees
  • *
  • *
  • Posts: 190
    • Awards
Re: Cry Chat
« Reply #9 on: August 08, 2010, 12:45:27 PM »
Quote
don't like it. people who cry shouldn't get their own private chat, they should simply be muted.

We are still dealing with kids playing a game scott, u cant tell kids not to cry, u just put them in seperate room to play there if they annoy you. It is normal that they cry and stuff, thats why i dont want to mute them, but just remove them from public chat, let them be kids.
thats kinda /ignore cmd
if its get scripted so we can use it whenever we want to stop crying/flamming.... etc

true, but this is more funny :p

*NEWS: Cheetos has been put in the cry corner.

muhahahaa

Offline Bloodst3r

  • SA-MP Donator
  • *
  • Posts: 566
  • Had a dream I was king. I woke up, still king.
    • Awards
Re: Cry Chat
« Reply #10 on: August 08, 2010, 01:45:44 PM »
Haha, I like this idea :D

I had a question tho, how are we capable of joining the /cry room ? like / cry join or something ? and does it have to be requested, or you just join straight away with no permissions from admins / /cry'ers ?

Offline Nemesis

  • SA-MP Retirees
  • *
  • Posts: 1165
  • Leave your mark
    • Awards
Re: Cry Chat
« Reply #11 on: August 08, 2010, 05:13:36 PM »
I think some admins will abuse it, they'll see two people arguing, not "crying", and use this command as an excuse to shut them up, even if ones just telling the other they backshot/doorshot/drivebyed him/her

Offline AJP

  • SA-MP Retirees
  • *
  • *
  • Posts: 4900
  • N1158Q
    • Awards
Re: Cry Chat
« Reply #12 on: August 08, 2010, 05:16:53 PM »
what there should be is an option to /ignore chat or ignore pms

/ignore chat -> messages and admin announcements still display, and gang chat but everything else doesn't
/ignore pm id -> blocks pms from a player


Offline Reny

  • SA-MP Retirees
  • *
  • *
  • Posts: 2161
  • I don't like personal texts.
    • Awards
  • SA-MP: Reny[UB]
Re: Cry Chat
« Reply #13 on: August 08, 2010, 05:30:44 PM »
what there should be is an option to /ignore chat or ignore pms

/ignore chat -> messages and admin announcements still display, and gang chat but everything else doesn't
/ignore pm id -> blocks pms from a player
Exactly what i said in my suggestion,my suggestion got accepted to implent /ignore cmd,someone told me like this:
"Simply press F7 two times",i said then the problem,we want to chat with our friends,but to ignore that fag that is spamming u.So i told that /ignore cmd should work on that player on whole chat,not only PM's.
" Flames, they licked the walls,
Tenderly they turned to dust all that i adore.. "
  

Offline BiG_Sm0k3

Re: Cry Chat
« Reply #14 on: August 08, 2010, 06:07:04 PM »
There is no need for this, and if its only for admins, beh, sometimes there are no admins on, and what happens if an admin uses /cry on some1 and forget to remove it -.-