Raised This Month: $51 Target: $400
 12% 

call admin


Post New Thread Reply   
 
Thread Tools Display Modes
raa
Senior Member
Join Date: Oct 2005
Old 12-02-2006 , 04:01   Re: call admin
Reply With Quote #11

me bashing?

not at all.. I was just trying to help, while also thinking outloud i guess..

lol.... so serious N shit..

If I did'nt like someones idea i would'nt post.

Last edited by raa; 12-02-2006 at 04:05.
raa is offline
|POW|Da_ghost
Senior Member
Join Date: Nov 2006
Location: http://snarkcafe.net
Old 12-02-2006 , 07:00   Re: call admin
Reply With Quote #12

You could be able to do this with sockets and a webserver (webmessenger).
I'm unexperienced in sockets but i think its possible
__________________
If you want me to help you with something please contact me on msn or xfire(Daghost1337)
|POW|Da_ghost is offline
Send a message via AIM to |POW|Da_ghost Send a message via MSN to |POW|Da_ghost
StevnJ9971
Senior Member
Join Date: Sep 2006
Location: California
Old 12-02-2006 , 13:46   Re: call admin
Reply With Quote #13

I'd really like someone to make this. I don't have any experience in coding or anything so I can't do it myself.
__________________
[IMG]http://img208.**************/img208/1706/userbar262772da7.gif[/IMG]
StevnJ9971 is offline
Send a message via AIM to StevnJ9971
TehCaesar
BANNED
Join Date: Jun 2006
Old 12-02-2006 , 15:52   Re: call admin
Reply With Quote #14

Steam Friends?
TehCaesar is offline
IntelliQ
Member
Join Date: Jul 2005
Old 12-02-2006 , 16:14   Re: call admin
Reply With Quote #15

If Im not mistaken, for the plugin to interact with an instant messenger you'd have to have one of those messengers running in the background. In that case, could u just minimize your game and IM them?

It might save a few seconds of frag-time not having to miminze the game, but it seems like a lot of work in order to save a few seconds in game play time.

Even in an extreme scenario of getting brutalized in a game of deathmatch, if i need help kicking butt, or report someone, I go to steam friends and PM someone or Msn messenger and IM them.

Intersting idea you have, I really dont mean to nay-say it, Im just thinking that the programs needed to contact someone would already have to be running and pretty easy to use?

Last edited by IntelliQ; 12-02-2006 at 16:31.
IntelliQ is offline
Reaper2331
Veteran Member
Join Date: Nov 2006
Location: Columbus,Ohio
Old 12-02-2006 , 17:10   Re: call admin
Reply With Quote #16

Look at this scripting someone made for TS2 connecting by typing /ts2


Code:
 
#include <amxmodx> 
#include <amxmisc>
new TSSERVER[256]="teamspeak://85.25.4.83:5090/?channel=wc3 No.1?password=?nickname=";
public plugin_init() {
 
    register_plugin("Connect 2 TS2","0.1","snipa");
    register_clcmd("say ts2","motd_ts2",0,"- Connect with the TS2-Server");
    register_clcmd("say /ts2","motd_ts2",0,"- Connect with the TS2-Server");
}
public motd_ts2(id)
{
    new URL[1024];
    new name[32];
    get_user_name(id, name, 31); 
    format(URL,1023,"<HTML><META HTTP-EQUIV=^"Refresh^" CONTENT=^"0; URL=%s%s^"><BODY bgcolor='black' text='#FFB000'><center><font style='font-family:verdana,tahoma;font-size:20'><br><br><br><br><br><br><br>Now you will be conneted with our TS2-Server...</font></center></BODY></HTML>",TSSERVER,name);
    show_motd(id,URL,"Team-Speak");
That proves it can auto start the program and send a messgage which would be good so like u can do amx_call "admin name" "message" or amx_call "message"

and a cvar like amx_cvar call_admin "0-5"

so like would say good idea and about the aim or xfire you can add aim, xfire, yahoo, msn, email

0.turn Plugin off
1. Aim
2. Yahoo
3.Msn
4.xfire
5.Email

you can add thing together like

amx_cvar call_admin "125" and it will send a email,im on aim, and im on yahoo

:0

But i dont know if any one is willing to take the time and make this plugin(I Hope Someone Will!)


Edit: ^ thats a good idea and i want to add to it, like u can have all that and have a .ini file called call.ini that has info for the messages like,

"admin steam id" "admin name" "yahoo" "aim" "email" xfire" "msn"
I will Upload a Example Now
Attached Files
File Type: ini Call.ini (240 Bytes, 122 views)

Last edited by Reaper2331; 12-02-2006 at 17:36.
Reaper2331 is offline
Send a message via AIM to Reaper2331 Send a message via MSN to Reaper2331 Send a message via Yahoo to Reaper2331
John Stamos
Junior Member
Join Date: May 2004
Old 12-02-2006 , 17:15   Re: call admin
Reply With Quote #17

This is a really great idea. SOmeone should do this.
John Stamos is offline
Send a message via AIM to John Stamos
StevnJ9971
Senior Member
Join Date: Sep 2006
Location: California
Old 12-02-2006 , 17:55   Re: call admin
Reply With Quote #18

Quote:
Originally Posted by IntelliQ View Post
If Im not mistaken, for the plugin to interact with an instant messenger you'd have to have one of those messengers running in the background. In that case, could u just minimize your game and IM them?

It might save a few seconds of frag-time not having to miminze the game, but it seems like a lot of work in order to save a few seconds in game play time.

Even in an extreme scenario of getting brutalized in a game of deathmatch, if i need help kicking butt, or report someone, I go to steam friends and PM someone or Msn messenger and IM them.

Intersting idea you have, I really dont mean to nay-say it, Im just thinking that the programs needed to contact someone would already have to be running and pretty easy to use?
Well I do agree with this, but at the same time, the people who would be calling the admin wouldn't know my AIM screen name. That's the main purpose of the plugin. If someone who's not in the clan and doesn't know my steam name or AIM screen name, they can just say "!admin" or something like that and it would send me a message through AIM.
__________________
[IMG]http://img208.**************/img208/1706/userbar262772da7.gif[/IMG]
StevnJ9971 is offline
Send a message via AIM to StevnJ9971
Reaper2331
Veteran Member
Join Date: Nov 2006
Location: Columbus,Ohio
Old 12-02-2006 , 17:58   Re: call admin
Reply With Quote #19

Quote:
Originally Posted by Reaper2331 View Post
Look at this scripting someone made for TS2 connecting by typing /ts2


Code:
 
#include <amxmodx> 
#include <amxmisc>
new TSSERVER[256]="teamspeak://85.25.4.83:5090/?channel=wc3 No.1?password=?nickname=";
public plugin_init() {
 
    register_plugin("Connect 2 TS2","0.1","snipa");
    register_clcmd("say ts2","motd_ts2",0,"- Connect with the TS2-Server");
    register_clcmd("say /ts2","motd_ts2",0,"- Connect with the TS2-Server");
}
public motd_ts2(id)
{
    new URL[1024];
    new name[32];
    get_user_name(id, name, 31); 
    format(URL,1023,"<HTML><META HTTP-EQUIV=^"Refresh^" CONTENT=^"0; URL=%s%s^"><BODY bgcolor='black' text='#FFB000'><center><font style='font-family:verdana,tahoma;font-size:20'><br><br><br><br><br><br><br>Now you will be conneted with our TS2-Server...</font></center></BODY></HTML>",TSSERVER,name);
    show_motd(id,URL,"Team-Speak");
That proves it can auto start the program and send a messgage which would be good so like u can do amx_call "admin name" "message" or amx_call "message"

and a cvar like amx_cvar call_admin "0-5"

so like would say good idea and about the aim or xfire you can add aim, xfire, yahoo, msn, email

0.turn Plugin off
1. Aim
2. Yahoo
3.Msn
4.xfire
5.Email

you can add thing together like

amx_cvar call_admin "125" and it will send a email,im on aim, and im on yahoo

:0

But i dont know if any one is willing to take the time and make this plugin(I Hope Someone Will!)


Edit: ^ thats a good idea and i want to add to it, like u can have all that and have a .ini file called call.ini that has info for the messages like,

"admin steam id" "admin name" "yahoo" "aim" "email" xfire" "msn"
I will Upload a Example Now


Yah but i dont like the !admin read the quote ^
Reaper2331 is offline
Send a message via AIM to Reaper2331 Send a message via MSN to Reaper2331 Send a message via Yahoo to Reaper2331
|POW|Da_ghost
Senior Member
Join Date: Nov 2006
Location: http://snarkcafe.net
Old 12-02-2006 , 19:54   Re: call admin
Reply With Quote #20

Yea but my Cs:s plugin used the motd to send a message to an admin.
This could be used here but you will need a server thats capable of connecting to an im client/server(web2messenger)
__________________
If you want me to help you with something please contact me on msn or xfire(Daghost1337)
|POW|Da_ghost is offline
Send a message via AIM to |POW|Da_ghost Send a message via MSN to |POW|Da_ghost
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 09:44.


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