April 03, 2025, 04:42:52 pm

The Gang Garrison 2 Forum

Please login or register.

Login with username, password and session length
Advanced search  

News:

NOTICE: Wondering where all the forums have gone?

Join the community Discord server!

Poll

Add /votekick? (lasts 1 round)

yes
- 57 (83.8%)
no
- 11 (16.2%)

Total Members Voted: 59


Pages: 1 ... 13 14 [15] 16

Author Topic: [server-sent plugin] Chat - Console!  (Read 31747 times)

SpaceAce

  • Junior Member
  • **
  • Karma: 1
  • Offline Offline
  • Posts: 167
  • I have realized that you are all assholes
Re: [server-sent plugin] Chat - Console!
« Reply #210 on: January 19, 2014, 10:45:45 pm »

Thanks for the /help error, miku. And thanks for not taking it out ever. Like, in any updates. thanks. WHAT THE FUCK IS HASREWARDSTATUE?
Logged

When the fuck is this going to be not a dead game

Lorgan

  • Retired Randomizer Mod Developer
  • Resident Miku
  • *****
  • Karma: 28
  • Offline Offline
  • Posts: 3624
    • My own website
Re: [server-sent plugin] Chat - Console!
« Reply #211 on: August 06, 2017, 01:06:11 pm »

KABUUUUUUUUUUMP

Fixed the crashes and solved aspect ratio and 60 fps issues.
Playtested for a bit on ajf's server and we found some bugs that I'll fix tomorrow but no crashes (yet).

I'm planning to replace chat_v2 with this so be sure to leave feedback if you're unhappy with something.

@serverhosts: if you already want to use this, I added some helpful extra commands to the OP.
.
Logged
Unfortunately, turning a section into a communist oppressive regime is not against the forum rules, so there is really nothing we can do.
Quote from: steam
21:08 - Hullusorsa: lorgan, when will you buy us the keys?
21:09 - Lorgan: i'm waiting for greece to collapse so the value of the euro drops
21:09 - Lorgan: not even joking

Spazz

  • Seasoned Member
  • *****
  • Karma: 44
  • Offline Offline
  • Posts: 1911
  • Almost too much seasoning.
Re: [server-sent plugin] Chat - Console!
« Reply #212 on: August 06, 2017, 01:32:19 pm »



Check this over?
Logged

<3 Bustatunez

Lorgan

  • Retired Randomizer Mod Developer
  • Resident Miku
  • *****
  • Karma: 28
  • Offline Offline
  • Posts: 3624
    • My own website
Re: [server-sent plugin] Chat - Console!
« Reply #213 on: August 06, 2017, 02:01:14 pm »

Do gg2 servers actually stay up long enough for that to be an issue? I guess I can add a limit to it.
Logged
Unfortunately, turning a section into a communist oppressive regime is not against the forum rules, so there is really nothing we can do.
Quote from: steam
21:08 - Hullusorsa: lorgan, when will you buy us the keys?
21:09 - Lorgan: i'm waiting for greece to collapse so the value of the euro drops
21:09 - Lorgan: not even joking

Phantom Brave

  • All Hail Classicwell
  • Moderator
  • *****
  • Karma: 70
  • Offline Offline
  • Posts: 12531
  • Another one --
Re: [server-sent plugin] Chat - Console!
« Reply #214 on: August 06, 2017, 04:13:35 pm »

they do
Logged

http://steamcommunity.com/id/wareya/
ladies and gentlemen i would like to announce that the fact of the matter is up that the fact of the matter is a fact and it matters

#freeprime

  • Junior Member
  • **
  • Karma: 4
  • Offline Offline
  • Posts: 115
  • not arctic
Re: [server-sent plugin] Chat - Console!
« Reply #215 on: August 06, 2017, 04:15:47 pm »

Do gg2 servers actually stay up long enough for that to be an issue? I guess I can add a limit to it.
i remember deleting the first few messages in the chat log causes the chat to glitch
« Last Edit: August 06, 2017, 04:19:33 pm by arcticc »
Logged

Spazz

  • Seasoned Member
  • *****
  • Karma: 44
  • Offline Offline
  • Posts: 1911
  • Almost too much seasoning.
Re: [server-sent plugin] Chat - Console!
« Reply #216 on: August 06, 2017, 05:15:28 pm »

Jersey's server is sort of a replacement for BTWs, and BTWs would also have this issue once or twice a week.
Logged

<3 Bustatunez

Lorgan

  • Retired Randomizer Mod Developer
  • Resident Miku
  • *****
  • Karma: 28
  • Offline Offline
  • Posts: 3624
    • My own website
Re: [server-sent plugin] Chat - Console!
« Reply #217 on: August 07, 2017, 12:17:37 pm »

Updated!

- Messages older than 1 hour are removed.
- Playernames are now also sanitized so #'s shouldn't do weird things anymore.
- Fixed some commands sending messages to all clients instead of only the one who issued the command.
- Fixed a timing issue that made the winning vote not be highlighted for clients sometimes.

Do gg2 servers actually stay up long enough for that to be an issue? I guess I can add a limit to it.
i remember deleting the first few messages in the chat log causes the chat to glitch
that's probably because there is a second list that keeps track of when the messages are added and you didn't clear that.
« Last Edit: August 07, 2017, 12:19:04 pm by Lorgan »
Logged
Unfortunately, turning a section into a communist oppressive regime is not against the forum rules, so there is really nothing we can do.
Quote from: steam
21:08 - Hullusorsa: lorgan, when will you buy us the keys?
21:09 - Lorgan: i'm waiting for greece to collapse so the value of the euro drops
21:09 - Lorgan: not even joking

[FR]YB

  • 2013 Haxxy Award Winner
  • *
  • Karma: 28
  • Offline Offline
  • Posts: 642
  • There are 11 people playing holy sh
Re: [server-sent plugin] Chat - Console!
« Reply #218 on: August 12, 2017, 11:37:47 am »

(This post is about all server sent plugins, but I'm posting here because I thought about it while reading chat code)

Code: (chat plugin.gml l.115) [Select]
// To prevent errors.
object_event_add(Player, ev_create, 0, '
        hasChat = false;
        [...]
');

// Because server-sent plugins do weird things on startup + name change detection
object_event_add(Player, ev_step, ev_step_begin, '
    // this only gets executed for host.
    if (!variable_local_exists("hasChat")) {
        hasChat = false;
        [...]
    }
[...]

Does this mean that the reason why we need that hack is because the host Player already exists before the server sent plugin script is executed? The source code seems to indicate so.
So maybe, instead of checking if a local var exists every step, we could just use with(Player) instead? Like this

Code: (chat plugin.gml l.115) [Select]
var playerInitScript;
playerInitScript =  '
        hasChat = false;
        [...]
';

object_event_add(Player, ev_create, 0, playerInitScript);
with (Player) {
    execute_string(playerInitScript);
}



Edit: alright, I just tested the following code
Code: [Select]
var playerInitScript;
playerInitScript = '
show_message("playerInitScript  for " + string(id));
superDuperVar = ":D";
';

object_event_add(Player, ev_create, 0, playerInitScript);
with(Player) {
show_message("withplayer");
execute_string(playerInitScript);
}

object_event_add(Character, ev_draw, 0 , '
draw_text(x, y - 20, player.superDuperVar);
');

Scenario is the following:
 - host H creates the server
 - H: message box "withplayer"
 - H: message box "playerInitScript for " (host Player id)
 - H spawns, its Character displays ":D" above the Character properly
 - player P joins the server
 - H: message box "playerInitScript for " (player Player id)
 - P: message box "playerInitScript for " (host Player id)
 - P: message box "playerInitScript for " (player Player id)
 - P spawns, both Characters on both sides display ":D" properly

It looks like it works as it should, so I guess we could use that instead of checking variables every step. I don't know if it's a huge improvement, but I'll be using that from now on.
« Last Edit: August 12, 2017, 11:58:17 am by [FR]YB »
Logged

Lorgan

  • Retired Randomizer Mod Developer
  • Resident Miku
  • *****
  • Karma: 28
  • Offline Offline
  • Posts: 3624
    • My own website
Re: [server-sent plugin] Chat - Console!
« Reply #219 on: August 12, 2017, 01:31:27 pm »

Welll I don't expect this to make any performance difference but it does make for slightly nicer code.
Also I don't recommend reading my plugin code because everything is hacked together :P
Logged
Unfortunately, turning a section into a communist oppressive regime is not against the forum rules, so there is really nothing we can do.
Quote from: steam
21:08 - Hullusorsa: lorgan, when will you buy us the keys?
21:09 - Lorgan: i'm waiting for greece to collapse so the value of the euro drops
21:09 - Lorgan: not even joking

[FR]YB

  • 2013 Haxxy Award Winner
  • *
  • Karma: 28
  • Offline Offline
  • Posts: 642
  • There are 11 people playing holy sh
Re: [server-sent plugin] Chat - Console!
« Reply #220 on: August 12, 2017, 01:32:34 pm »

I don't recommend reading my plugin code because everything is hacked together :P
Well I do need to read it if I want to make custom MotD plugins :p

#freeprime

  • Junior Member
  • **
  • Karma: 4
  • Offline Offline
  • Posts: 115
  • not arctic
Re: [server-sent plugin] Chat - Console!
« Reply #221 on: August 12, 2017, 08:40:15 pm »

Welll I don't expect this to make any performance difference but it does make for slightly nicer code.
Also I don't recommend reading my plugin code because everything is hacked together :P
>execute_string() every step
Logged

Lorgan

  • Retired Randomizer Mod Developer
  • Resident Miku
  • *****
  • Karma: 28
  • Offline Offline
  • Posts: 3624
    • My own website
Re: [server-sent plugin] Chat - Console!
« Reply #222 on: August 13, 2017, 01:10:32 am »

Nope 8D

I changed it so it only does execute_string when a message is sent or receved.
Logged
Unfortunately, turning a section into a communist oppressive regime is not against the forum rules, so there is really nothing we can do.
Quote from: steam
21:08 - Hullusorsa: lorgan, when will you buy us the keys?
21:09 - Lorgan: i'm waiting for greece to collapse so the value of the euro drops
21:09 - Lorgan: not even joking

#freeprime

  • Junior Member
  • **
  • Karma: 4
  • Offline Offline
  • Posts: 115
  • not arctic
Re: [server-sent plugin] Chat - Console!
« Reply #223 on: August 13, 2017, 01:27:24 am »

nice meme
Logged

PrOF

  • Full Member
  • ***
  • Karma: 43
  • Offline Offline
  • Posts: 596
  • Sometimes a dev. Only sometimes
Re: [server-sent plugin] Chat - Console!
« Reply #224 on: August 13, 2017, 01:44:31 am »

Nope 8D

I changed it so it only does execute_string when a message is sent or receved.
:trophy:
Logged
Pages: 1 ... 13 14 [15] 16
 

Page created in 0.032 seconds with 49 queries.