SA-MP Forums Archive
[Plugin] SendLongMessage - Message Splitter for Chat - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Plugin Development (https://sampforum.blast.hk/forumdisplay.php?fid=18)
+--- Thread: [Plugin] SendLongMessage - Message Splitter for Chat (/showthread.php?tid=576265)



SendLongMessage - Message Splitter for Chat - Rancho - 02.06.2015

SendLongMessage
Introduction

Automated message splitter for sa-mp. There are lots of message splitters but there are no message splitter with colour code support. This plugin has colour-code support. Your last colour code will be applied in next lines. Also this plugin splits message by space. You will not see divided words like:
Код:
Hello un...
...iverse.
Functions
Код:
/*
 *
 * 		@File: slm.inc
 *		@Author: Rancho
 * 		@Description: slm class
 *
 */

#if defined _slm_included
  #endinput
#endif
#define _slm_included
#pragma library SendLongMessage

native SendLongMessage ( playerid, color, msg[] );
native SendLongMessageToAll ( color, msg[] );
Screenshots
Screenshots will be added soon.


OS Support
Currently, plugin is only supported on Linux

Download

Compiled binaries and source files will always be here:

GitHub Releases Page

The source can be browsed here. This repository can also be cloned.


Re: SendLongMessage - Message Splitter for Chat - kristo - 02.06.2015

Strange to see this as a plugin. Actually I've created a message splitter which has 99% of the functionality this has, plus some more. Good effort you've put in this, though - I like it.


Re: SendLongMessage - Message Splitter for Chat - ExTaZZ69 - 02.06.2015

Very nice plugin. Keep it up!


Re: SendLongMessage - Message Splitter for Chat - Dayvison_ - 02.06.2015

Nice plugin..


Re: SendLongMessage - Message Splitter for Chat - Luis- - 02.06.2015

I don't see a reason for this being a plugin? Wouldn't it be easier for it to be an include?


Re: SendLongMessage - Message Splitter for Chat - Dayvison_ - 02.06.2015

Quote:
Originally Posted by Luis-
Посмотреть сообщение
I don't see a reason for this being a plugin? Wouldn't it be easier for it to be an include?
What reason cannot be in plugin?


Re: SendLongMessage - Message Splitter for Chat - Adejair_Junior - 02.06.2015

Quote:
Originally Posted by Day_
Посмотреть сообщение
What reason cannot be in plugin?
Read code and view


Unnecessary plugin, I would not use, its possible create with pawn


Re: SendLongMessage - Message Splitter for Chat - ev0lution - 02.06.2015

Why is this a plugin? It's existed in pawn for years and it's incredibly simple to create.


Re: SendLongMessage - Message Splitter for Chat - Romz - 02.06.2015

What it is?


Re : SendLongMessage - Message Splitter for Chat - nicolaskettler - 02.06.2015

It's possible to do it in pawn but i do believe that using a plugin would be faster and way better, thank's


Re: SendLongMessage - Message Splitter for Chat - Rancho - 02.06.2015

Quote:
Originally Posted by Luis-
Посмотреть сообщение
I don't see a reason for this being a plugin? Wouldn't it be easier for it to be an include?
Quote:
Originally Posted by ev0lution
Посмотреть сообщение
Why is this a plugin? It's existed in pawn for years and it's incredibly simple to create.
Actually, I haven't put extra effort for writing this. I am writing a gamemode in C++, and I have written this for my gamemode. Then, I think may be there is someone like me who needs 'Message Splitter.'. And I shared. By the way, using it is up to you. I just shared.


Re: SendLongMessage - Message Splitter for Chat - Battlezone - 02.06.2015

This is useful for people who are new to plugins developement though, i can call it an example


Respuesta: SendLongMessage - Message Splitter for Chat - Adoniiz - 03.06.2015

You can compile for Windows? it's a useful plugin


Re: SendLongMessage - Message Splitter for Chat - Crayder - 04.06.2015

This could indeed be done in pawn very easily, but I like your effort. Though, instead of using '...' on the beginning and end of split words you should just add a dash ('-') to the end of the first section and nothing on the second beginning.


Re: SendLongMessage - Message Splitter for Chat - DRIFT_HUNTER - 04.06.2015

Splitting message in multiple lines is not a problem, problem is when you use to much colors in a single message and you hit buffer limit...