AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Scripting Help (https://forums.alliedmods.net/forumdisplay.php?f=11)
-   -   Help Please :( ? (https://forums.alliedmods.net/showthread.php?t=306146)

akela 03-18-2018 09:53

Help Please :( ?
 
1 Attachment(s)
Hello guys .

Can any one please tell me how i edit this .. or give me the plugin name ?


https://i.imgur.com/GPAcdIG.jpg

thnx so much for ur time

Relaxing 03-18-2018 10:19

Re: Help Please :( ?
 
Do you want to remove that message, or create one of those?

akela 03-18-2018 10:23

Re: Help Please :( ?
 
i want to edit it

Relaxing 03-18-2018 10:33

Re: Help Please :( ?
 
Post da source of glory.

akela 03-18-2018 10:59

Re: Help Please :( ?
 
what ?

Relaxing 03-18-2018 11:10

Re: Help Please :( ?
 
no source? noone cares
Code:
#include <amxmodx> #include <engine> new message[64]; new message1[64] = "Get the message"; new new_message[] = "Overwrite using this"; public plugin_init()     register_message(get_user_msgid("TextMsg"), "called_msg"); public called_msg(msgid, msgdest, msgargs){     get_msg_arg_string(2, message, charsmax(message));     if (equal(message, message1)){         client_print(0, print_chat, "%s", new_message);         return PLUGIN_HANDLED;     }     return PLUGIN_CONTINUE; }

Natsheh 03-18-2018 14:49

Re: Help Please :( ?
 
Quote:

Originally Posted by Relaxing (Post 2583496)
no source? noone cares
Code:
#include <amxmodx> #include <engine> new message[64]; new message1[64] = "Get the message"; new new_message[] = "Overwrite using this"; public plugin_init()     register_message(get_user_msgid("TextMsg"), "called_msg"); public called_msg(msgid, msgdest, msgargs){     get_msg_arg_string(2, message, charsmax(message));     if (equal(message, message1)){         client_print(0, print_chat, "%s", new_message);         return PLUGIN_HANDLED;     }     return PLUGIN_CONTINUE; }


This wont work unless the message is been sent by the
emessage_* natives which allows to catch up the msg.


All times are GMT -4. The time now is 11:52.

Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.