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

Chickenmod: Rebirth (by T(+)rget)


Post New Thread Reply   
 
Thread Tools Display Modes
KWo
AMX Mod X Beta Tester
Join Date: Jul 2004
Location: Poland
Old 09-14-2008 , 04:54   Re: Chickenmod: Rebirth (by T(+)rget)
Reply With Quote #391

Please express Your question. I don't understand what You are asking about.
__________________
The Fullpack of podbot mm V3B22 - 24 apr 2012!!! is available here.
The All-In-One 3.2a package - 02 jun 2013 (AMX X 1.8.2 [with ATAC 3.0.1b , CSDM2.1.3c beta, CM OE 0.6.5, podbot mm V3B22c and mm 1.20) is available here.
The newest Beta V3B23a (rel. 28 august 2018!!!) is available here.

Last edited by KWo; 09-14-2008 at 09:09.
KWo is offline
Brad
AMX Mod X Team Member
Join Date: Jun 2004
Old 09-14-2008 , 15:58   Re: Chickenmod: Rebirth (by T(+)rget)
Reply With Quote #392

As I understand it, he doesn't want chickens to be able to understand non-chickens.

What would be cool, IMO, is if the chickens heard mumble jumble when non-chickens chatted, but could understand what other chickens were saying. Presumably with a few buk byuks thrown in.
__________________
Brad is offline
hOmer_dU_25
Junior Member
Join Date: Feb 2009
Old 02-15-2009 , 08:20   Re: Chickenmod: Rebirth (by T(+)rget)
Reply With Quote #393

Hello !
How can I do to enable "amx_chicken *" on 1 map (not all the maps) ?
(I know how to make a config for each map but, when I type "amx_chicken *" in my "map's config.cfg", it doesn't work !!! But, for eg., if I type "mp_startmoney 5000" in this, it works !!!)
Please, help me to enable Chicken Mod for all just on 1 map, automatically...
hOmer_dU_25 is offline
Arkshine
AMX Mod X Plugin Approver
Join Date: Oct 2005
Old 02-15-2009 , 08:45   Re: Chickenmod: Rebirth (by T(+)rget)
Reply With Quote #394

Put amx_chicken * in a file named yourmap.cfg in amxmodx/configs/maps/ directory.
Arkshine is offline
hOmer_dU_25
Junior Member
Join Date: Feb 2009
Old 02-15-2009 , 10:14   Re: Chickenmod: Rebirth (by T(+)rget)
Reply With Quote #395

That's what I've done... It still doesn't work... P.S. : Excuse me if I've made some mistakes by writting... I'm French !
hOmer_dU_25 is offline
DarkGod
SourceMod DarkCrab
Join Date: Jul 2007
Location: Sweden
Old 02-15-2009 , 10:26   Re: Chickenmod: Rebirth (by T(+)rget)
Reply With Quote #396

Maybe it turns only the clients who are already in the server into chickens.
When mapchangecfgfile executes then no clients should be in the server, you would have to do it every time a client connects.
__________________
DarkGod is offline
Send a message via AIM to DarkGod Send a message via MSN to DarkGod
hOmer_dU_25
Junior Member
Join Date: Feb 2009
Old 02-15-2009 , 10:39   Re: Chickenmod: Rebirth (by T(+)rget)
Reply With Quote #397

Is there a plugin which could execute the command or the ".cfg" file where there's written "amx_chicken *" automatically at each connection of a new player on the server (it's a server Condition Zero) ?
hOmer_dU_25 is offline
hOmer_dU_25
Junior Member
Join Date: Feb 2009
Old 02-15-2009 , 10:53   Re: Chickenmod: Rebirth (by T(+)rget)
Reply With Quote #398

If someone recompil the plugin "join_leave.amxx" for this plugin execute the command "amx_chicken *" when a player has joined the server + write "O NO! %name% is ready to play!", do you think that it could work ?

Source :

/*
Join/Leave Message 1.2 by BigBaller

Just shows a basic Tsay like message to all players when user
is connecting, has established connection and disconnected from your server.

Just upload into your amxx/plugins folder
Add join_leave.amx in your amxx/plugins.ini

Restart server or change map.

ENJOY!

*New, You are able to turn messages off and on using the cvar
amx_join_leave

1 = On
0 = Off

Plugin by default is 1

Change Log
v 1.0 - Started with basic messages.
v 1.1 - Created a cvar to disable messages (cvar is amx_join_leave 1|0)
v 1.2 - Moved the messages up, they conflicted with plugins such as StatsX and PTB
*/

#include <amxmodx>

public plugin_init() {
register_plugin("Join/Leave Message","1.2","BigBaller")
register_cvar("amx_join_message", "Beware %name% is connecting.")
register_cvar("amx_joined_message", "O NO! %name% is ready to play!")
register_cvar("amx_leave_message", "Goodbye %name%, Please come back soon.")
register_cvar("amx_join_leave","1")
}

public client_connect(id){
new user[32], len
user[0] = id
len = get_user_name(id,user[1],31)
set_task(2.0, "join_msg", 0, user,len + 2)
return PLUGIN_CONTINUE
}

public client_putinserver(id){
new user[32], len
user[0] = id
len = get_user_name(id,user[1],31)
set_task(2.0, "joined_msg", 0, user,len + 2)
return PLUGIN_CONTINUE
}

public client_disconnect(id){
new user[32], len
user[0] = id
len = get_user_name(id, user[1], 31)
set_task(2.0, "leave_msg", 0, user, len + 2)
return PLUGIN_CONTINUE
}

public join_msg(user[]) {
if (get_cvar_num("amx_join_leave")==0){
return PLUGIN_HANDLED
}
if (get_cvar_num("amx_join_leave")==1){
new message[192]
get_cvar_string("amx_join_message", message, 191)
replace(message, 191, "%name%", user[1])
set_hudmessage(0, 225, 0, 0.05, 0.45, 0, 6.0, 6.0, 0.5, 0.15, 3)
show_hudmessage(0, message)
return PLUGIN_CONTINUE
}
return PLUGIN_CONTINUE
}

public joined_msg(user[]) {
if (get_cvar_num("amx_join_leave")==0){
return PLUGIN_HANDLED
}
if (get_cvar_num("amx_join_leave")==1){
new message[192]
get_cvar_string("amx_joined_message", message, 191)
replace(message, 191, "%name%", user[1])
set_hudmessage(0, 225, 0, 0.05, 0.45, 0, 6.0, 6.0, 0.5, 0.15, 3)
show_hudmessage(0, message)
return PLUGIN_CONTINUE
}
return PLUGIN_CONTINUE
}

public leave_msg(user[]) {
if (get_cvar_num("amx_join_leave")==0){
return PLUGIN_HANDLED
}
if (get_cvar_num("amx_join_leave")==1){
new message[192]
get_cvar_string("amx_leave_message", message, 191)
replace(message, 191, "%name%", user[1])
set_hudmessage(0, 225, 0, 0.05, 0.45, 0, 6.0, 6.0, 0.5, 0.15, 3)
show_hudmessage(0, message)
return PLUGIN_CONTINUE
}
return PLUGIN_CONTINUE
}

Last edited by hOmer_dU_25; 02-15-2009 at 11:37.
hOmer_dU_25 is offline
hOmer_dU_25
Junior Member
Join Date: Feb 2009
Old 02-15-2009 , 12:29   Re: Chickenmod: Rebirth (by T(+)rget)
Reply With Quote #399

Any help ?
hOmer_dU_25 is offline
KWo
AMX Mod X Beta Tester
Join Date: Jul 2004
Location: Poland
Old 02-16-2009 , 03:44   Re: Chickenmod: Rebirth (by T(+)rget)
Reply With Quote #400

This topic is dedicated to the ChickenMod Rebirth version posted by syphilis. The people are helping with understanding and getting to work the functionality included into released version of the plugin. If You want to modify it or You are asking about extensions - wrong place. syphilis is o longer supporting this plugin. If You want to try the beta version of ChickenMod Orange Edition - let me or arkshine know - we can post You a link to it. I think the beta should be released for public since long time, because CM Rebirth should be moved to unapproved plugins long time ago (since the author is not supporting it long time).
__________________
The Fullpack of podbot mm V3B22 - 24 apr 2012!!! is available here.
The All-In-One 3.2a package - 02 jun 2013 (AMX X 1.8.2 [with ATAC 3.0.1b , CSDM2.1.3c beta, CM OE 0.6.5, podbot mm V3B22c and mm 1.20) is available here.
The newest Beta V3B23a (rel. 28 august 2018!!!) is available here.
KWo is offline
Old 02-16-2009, 11:33
hOmer_dU_25
This message has been deleted by hOmer_dU_25.
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 20:06.


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