Jump to content

Private Mode


Akasha

Recommended Posts

:snack-crazy-rabbit-emoticon:Hello buddies, I came here to suggest the Setting: Private Mode, because sometimes...

 

- you're not in mood (even for your friends or guild mates)

- you just want to do your stuff in peace

- you may not wish to read any chats at all, as you can't add everybody to your ignore list and remove manually 

- you're logging in only for testing 

or whatever reason you might have....

 

How it works in practice:

 

- No login notifications appear to friends when you log in
-When a player messages you or send an invitation for parties, it generates a notification as happens when you're offline.
-No interacting with other players
-No world chat notifications from you for amplifying, receiving loot, name changing, etc.

-Still allows to buy items from market, interact with NPCs, attack/be attacked and kill/be killed by monsters and players, enter dungeons (alone), collect flowers and mushrooms, etc.

 

logic in code:

 

if (player.privateMode==true) {
    friendLoginNotification = false;
    worldChatNotification = false;
    messaging = false;
    interacting = false;
}

Edited by Aкasha
Link to comment
Share on other sites

Basically turn everything off from settings, then you would only have message icon on top of menu button and interactions. Invites and trades etc.

Link to comment
Share on other sites

19 минут назад, Aкasha сказал:

else if (player.privateMode==false) {

no needed

 

if (player.privateMode==true) {
...
}else{  // if player.privateMode!=true, means false
...
}

Link to comment
Share on other sites

 

35 минут назад, Aкasha сказал:

if (player.privateMode==true) {
    friendLoginNotification = false;
    worldChatNotification = false;
    messaging = false;
    interacting = false;
}
else if (player.privateMode==false) {
   friendLoginNotification = true;
   worldChatNotification = true;
   messaging = true;
   interacting = true;
}

@64-core CPUI think that there shouldn't be if-else construction. Because in settings it will be in tick-mode. Then we can use xor (logic operation) for it.

Link to comment
Share on other sites

19 minutes ago, 64-core CPU said:

no needed

 

if (player.privateMode==true) {
...
}else{  // if player.privateMode!=true, means false
...
}

right


LOL guys you must take easier with your progm thing :pigface:

Edited by Aкasha
Link to comment
Share on other sites

6 minutes ago, Rogwandl said:

 

@64-core CPUI think that there shouldn't be if-else construction. Because in settings it will be in tick-mode. Then we can use xor (logic operation) for it.

Show me your code!

Link to comment
Share on other sites

30 minutes ago, Jcbreff said:

Basically turn everything off from settings, then you would only have message icon on top of menu button and interactions. Invites and trades etc.

the point is not to be shown as online, get it ?

Link to comment
Share on other sites

1 minute ago, Rogwandl said:

friendLoginNotification ^= 1;
worldChatNotification ^= 1;

messaging ^= 1;
interacting ^= 1;

Without if)

Thanks!

Now AIGRIND can just copy and paste.

Edited by Ninja Owl
Link to comment
Share on other sites

My lil' brain does not understand all of these codes T.T

 

Basically, does that mean that other players are not even able to pm you if you turn on the "Private Mode"? 

Link to comment
Share on other sites

Just now, Higgings said:

My lil' brain does not understand all of these codes T.T

 

Basically, does that mean that other players are not even able to pm you if you turn on the "Private Mode"? 

- When a player messages you or send an invitation for parties, it generates a notification as happens when you're offline.

Link to comment
Share on other sites

1 minute ago, Aкasha said:

- When a player messages you or send an invitation for parties, it generates a notification as happens when you're offline.

 

Interesting. In this case, I definitly like the idea!

Link to comment
Share on other sites

Added to a toggle switch, example if you click your class's icon in the top left hand corner it changes it would be nice.

Also if you could set the parameters for what you want disabled in options.

Link to comment
Share on other sites

9 часов назад, Rogwandl сказал:

Without if)


    friendLoginNotification = !player.privateMode;
    worldChatNotification = !player.privateMode;
    messaging = !player.privateMode;
    interacting = !player.privateMode;

Link to comment
Share on other sites

This would be nice. Also a way to stop people from exchanging you wouldn't hurt.

 

Having a couple options could come in handy aswell. Having an option where only people added to your friends could pm you or invite to parties etc

Link to comment
Share on other sites

4 hours ago, vavavi said:

This would be nice. Also a way to stop people from exchanging you wouldn't hurt.

 

Having a couple options could come in handy aswell. Having an option where only people added to your friends could pm you or invite to parties etc

 

Can work too, I guess

Link to comment
Share on other sites

  • 3 weeks later...
  • 2 weeks later...
On 1/19/2018 at 3:26 AM, Ninja Owl said:

Basically this:

 

Ninjaowl << Hey noob
INFO: Player Ninjaowl has left the game.

I like this idea . Hahah

-----

And also the idea of private mode sounds good to me. I want to be alone sometimes bcoz other player bothered u for chat. And its annoying while questing so u left no choice but to reply . So This mode will help in a manner that they will not offend from getting rejected or bein ignored.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...