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

[v2.5.2, March 19] Trouble in Terrorist Town mod


Post New Thread Reply   
 
Thread Tools Display Modes
ErikMav94
Member
Join Date: Jan 2012
Location: ARG
Old 02-20-2015 , 16:26   Re: [v2.5.1, February 15] Trouble in Terrorist Town mod
Reply With Quote #311

Quote:
Originally Posted by Joluis81 View Post
Almost everything has problems with colors . Most have that problem. Already step photo
PHP Code:
#if AMXX_VERSION_NUM < 183
    #define client_print_color client_print
    #define print_team_default print_chat
    #define print_team_grey print_chat
    #define print_team_red print_chat
    #define print_team_blue print_chat
    #define print_team_green print_chat 
amxx 1.8.2 == normal print
ErikMav94 is offline
Send a message via Skype™ to ErikMav94
Zorzikic
Junior Member
Join Date: Dec 2013
Old 02-21-2015 , 16:06   Re: [v2.5.1, February 15] Trouble in Terrorist Town mod
Reply With Quote #312

server shout down for model 1 :S
Zorzikic is offline
GuskiS
Veteran Member
Join Date: Aug 2007
Location: Latvia
Old 02-22-2015 , 06:57   Re: [v2.5.1, February 15] Trouble in Terrorist Town mod
Reply With Quote #313

Quote:
Originally Posted by Zorzikic View Post
server shout down for model 1 :S
That doesn't help. You need to be specific, what happened.
__________________
Finished mods:
Trouble in Terrorist Town
MurderMod
The Hidden
Cowboys vs Indians
JailBreak Supreme
Survival Madness
GuskiS is offline
ErikMav94
Member
Join Date: Jan 2012
Location: ARG
Old 02-24-2015 , 15:36   Re: [v2.5.1, February 15] Trouble in Terrorist Town mod
Reply With Quote #314

In the logs shows this and do not know why

Code:
[ttt_core.amxx] STATE Param1 32, Param2 12, plugin ttt_voice.amxx
[ttt_core.amxx] STATE Param1 32, Param2 12, plugin ttt_dna_system.amxx
[ttt_core.amxx] STATE Param1 32, Param2 12, plugin ttt_special_info.amxx
[ttt_core.amxx] ELSE Param1 32, Param2 7, plugin ttt_special_info.amxx
[ttt_core.amxx] STATE Param1 32, Param2 12, plugin ttt_core.amxx
[ttt_core.amxx] ELSE Param1 32, Param2 14, plugin ttt_replacements.amxx
[ttt_core.amxx] STATE Param1 32, Param2 12, plugin ttt_item_c4.amxx
Thousands of logs are generated with that
ErikMav94 is offline
Send a message via Skype™ to ErikMav94
GuskiS
Veteran Member
Join Date: Aug 2007
Location: Latvia
Old 02-24-2015 , 16:30   Re: [v2.5.1, February 15] Trouble in Terrorist Town mod
Reply With Quote #315

Quote:
Originally Posted by ErikMav94 View Post
In the logs shows this and do not know why

Code:
[ttt_core.amxx] STATE Param1 32, Param2 12, plugin ttt_voice.amxx
[ttt_core.amxx] STATE Param1 32, Param2 12, plugin ttt_dna_system.amxx
[ttt_core.amxx] STATE Param1 32, Param2 12, plugin ttt_special_info.amxx
[ttt_core.amxx] ELSE Param1 32, Param2 7, plugin ttt_special_info.amxx
[ttt_core.amxx] STATE Param1 32, Param2 12, plugin ttt_core.amxx
[ttt_core.amxx] ELSE Param1 32, Param2 14, plugin ttt_replacements.amxx
[ttt_core.amxx] STATE Param1 32, Param2 12, plugin ttt_item_c4.amxx
Thousands of logs are generated with that
Ahh, sry.
I had forgottent to remove logger and in my test server I didn't see that cause of I never got 32 players ;D
Remove this:
PHP Code:
    if(id >= 32 || data >= PLAYER_DATA)
    {
        static 
name[40];
        
get_plugin(pluginnamecharsmax(name));
        if(
data == PD_PLAYERSTATE)
            
log_amx("STATE Param1 %d, Param2 %d, plugin %s"iddataname);
        else 
log_amx("ELSE Param1 %d, Param2 %d, plugin %s"iddataname);
    } 
from _get_playerdata and _set_playerdata in ttt_core.sma

Thanks for reporting. Looking forward for your suggestions
__________________
Finished mods:
Trouble in Terrorist Town
MurderMod
The Hidden
Cowboys vs Indians
JailBreak Supreme
Survival Madness
GuskiS is offline
ErikMav94
Member
Join Date: Jan 2012
Location: ARG
Old 02-24-2015 , 16:43   Re: [v2.5.1, February 15] Trouble in Terrorist Town mod
Reply With Quote #316

Quote:
Originally Posted by GuskiS View Post
Ahh, sry.
I had forgottent to remove logger and in my test server I didn't see that cause of I never got 32 players ;D
Remove this:
PHP Code:
    if(id >= 32 || data >= PLAYER_DATA)
    {
        static 
name[40];
        
get_plugin(pluginnamecharsmax(name));
        if(
data == PD_PLAYERSTATE)
            
log_amx("STATE Param1 %d, Param2 %d, plugin %s"iddataname);
        else 
log_amx("ELSE Param1 %d, Param2 %d, plugin %s"iddataname);
    } 
from _get_playerdata and _set_playerdata in ttt_core.sma

Thanks for reporting. Looking forward for your suggestions
500mb logs are generated at times xD

Now I will try, ty!
ErikMav94 is offline
Send a message via Skype™ to ErikMav94
ErikMav94
Member
Join Date: Jan 2012
Location: ARG
Old 02-27-2015 , 18:28   Re: [v2.5.1, February 15] Trouble in Terrorist Town mod
Reply With Quote #317

when the round ends I can buy anything (using the old style menu)

I solved it by now well

in ttt_items_base

PHP Code:
public client_command(id)
{
    if(!
is_user_alive(id) || ttt_return_check(id))//    <------- HERE!!!
        
return PLUGIN_CONTINUE;

    static 
command[16];
    
read_argv(0commandcharsmax(command));
    for(new 
0<= charsmax(g_szBuyCommands); i++)
    {
        if(
equal(commandg_szBuyCommands[i]))
        {
            if(!
task_exists(id))
                
set_task(0.1"ttt_buymenu_show"id);

            return 
PLUGIN_HANDLED;
        }
    }

    if(
equal(command"client_buy_open"))
    {
        
// CHANGED
        
message_begin(MSG_ONEget_user_msgid("BuyClose"), _id);
        
message_end();
        
ttt_buymenu_show(id);
    }

    return 
PLUGIN_CONTINUE;

PHP Code:
if(!is_user_alive(id) || ttt_return_check(id))
        return 
PLUGIN_CONTINUE
---->

PHP Code:
if(!is_user_alive(id/*|| ttt_return_check(id)*/)//  <------- HERE!!!
        
return PLUGIN_CONTINUE
PHP Code:
stock ttt_return_check(id)
{
    new 
game ttt_get_gamemode();
    if(!
is_user_connected(id) || game == GAME_OFF || game == GAME_ENDED)
        return 
1;

    return 
0;

ErikMav94 is offline
Send a message via Skype™ to ErikMav94
Tinch06
Junior Member
Join Date: Feb 2015
Location: Buenos Aires
Old 02-28-2015 , 13:01   Re: [v2.5.1, February 15] Trouble in Terrorist Town mod
Reply With Quote #318

Finaly i can install all the mod, but many player in my community have no steam. I have steam and i dont have any problemas. But the others player cant play in my server (
Host_Error: UserMsg: Not Present on Client 58 ). Do you konw how can i fixed???

Quote:
Currently loaded plugins:
name version author file status
[ 1] Admin Base 1.8.1.3746 AMXX Dev Team admin.amxx running
[ 2] Admin Commands 1.8.1.3746 AMXX Dev Team admincmd.amxx running
[ 3] Admin Help 1.8.2 AMXX Dev Team adminhelp.amxx running
[ 4] Slots Reservation 1.8.1.3746 AMXX Dev Team adminslots.amxx running
[ 5] Multi-Lingual System 1.8.1.3746 AMXX Dev Team multilingual.am running
[ 6] Menus Front-End 1.8.1.3746 AMXX Dev Team menufront.amxx running
[ 7] Commands Menu 1.8.1.3746 AMXX Dev Team cmdmenu.amxx running
[ 8] Players Menu 1.8.1.3746 AMXX Dev Team plmenu.amxx running
[ 9] Maps Menu 1.8.1.3746 AMXX Dev Team mapsmenu.amxx running
[ 10] Plugin Menu 1.8.1.3746 AMXX Dev Team pluginmenu.amxx running
[ 11] Admin Chat 1.8.1.3746 AMXX Dev Team adminchat.amxx running
[ 12] Anti Flood 1.8.1.3746 AMXX Dev Team antiflood.amxx running
[ 13] Scrolling Message 1.8.1.3746 AMXX Dev Team scrollmsg.amxx running
[ 14] Info. Messages 1.8.1.3746 AMXX Dev Team imessage.amxx running

[ 15] Admin Votes 1.8.1.3746 AMXX Dev Team adminvote.amxx running
[ 16] NextMap 1.8.1.3746 AMXX Dev Team nextmap.amxx running
[ 17] Nextmap Chooser 1.8.1.3746 AMXX Dev Team mapchooser.amxx running
[ 18] TimeLeft 1.8.1.3746 AMXX Dev Team timeleft.amxx running
[ 19] Pause Plugins 1.8.1.3746 AMXX Dev Team pausecfg.amxx running
[ 20] Stats Configuration 1.8.1.3746 AMXX Dev Team statscfg.amxx running
[ 21] StatsX 1.8.1.3746 AMXX Dev Team statsx.amxx running
[ 22] Fix AutoBuy Bug 1.1 PomanoB & UFPS.T autobuyfix.amxx running
[ 23] dproto testing 1 dp_test.amxx running
[ 24] UpdateHint 1.2 Lev updatehint.amxx running
[ 25] Buyzone Range 0.1 VEN buyzonerange.am running
[ 26] CSDM Spawns 0.0.1 CSDM Team / Exol random_spawns.a running
[ 27] [AMXX] Settings API 1.0 MeRcyLeZZ amx_settings_ap running
[ 28] [CS] Teams API 1.2 WiLS cs_teams_api.am running
[ 29] CS Weapons API 1.0.0 GuskiS smm_cs_weapons_ running

[ 30] Timer Controller 0.0.4 hornet timer_controlle running
[ 31] Round Terminator 1.0.1 Arkshine round_terminato running
[ 32] [TTT] Core 2.5.0 GuskiS ttt_core.amxx running
[ 33] [TTT] Logging 2.5.0 GuskiS ttt_logging.amx running
[ 34] [TTT] Dead Body 2.5.0 GuskiS ttt_dead_body.a running
[ 35] [TTT] Replacements 2.5.0 GuskiS ttt_replacement running
[ 36] [TTT] Round winner 2.5.0 GuskiS ttt_round_winne running
[ 37] [TTT] AntiRetry system 2.5.0 GuskiS ttt_antiretry_s running
[ 38] [TTT] Stats System 2.5.0 GuskiS ttt_stats_syste running
[ 39] [TTT] Defusing system 2.5.0 GuskiS ttt_defuse_syst running
[ 40] [TTT] DNA System 2.5.0 GuskiS ttt_dna_system. running
[ 41] [TTT] Warning system 2.5.0 GuskiS ttt_warning_sys running
[ 42] [TTT] Item menu base 2.5.0 GuskiS ttt_items_base. running
[ 43] [TTT] Backpack base 2.5.0 GuskiS ttt_items_backp running
[ 44] [TTT] Item: C4 2.5.0 GuskiS ttt_item_c4.amx running

[ 45] [TTT] Item: Jihad 2.5.0 GuskiS ttt_item_jihad. running
[ 46] [TTT] Item: HP Station 2.5.0 GuskiS ttt_item_hp.amx running
[ 47] [TTT] Item: DNA Scanne 2.5.0 GuskiS ttt_item_dna.am running
[ 48] [TTT] Item: Defuser&Ar 2.5.0 GuskiS ttt_item_defarm running
[ 49] [TTT] Item: Hide your 2.5.0 GuskiS ttt_item_hyn.am running
[ 50] [TTT] Item: Death Stat 2.5.0 GuskiS ttt_item_deaths running
[ 51] [TTT] Item: Silent USP 2.5.0 GuskiS ttt_item_silenc running
[ 52] [TTT] Item: Knife 2.5.0 GuskiS ttt_item_knife. running
[ 53] [TTT] Item: UMP Protot 2.5.0 GuskiS ttt_item_ump.am running
[ 54] [TTT] Item: Teleport 2.5.0 GuskiS ttt_item_telepo running
[ 55] [TTT] Item: Pocket rev 2.5.0 GuskiS ttt_item_revolv running
[ 56] [TTT] Item: Golden Gun 2.5.0 GuskiS ttt_item_golden running
[ 57] [TTT] Item: AWP 2.5.0 GuskiS ttt_item_awp.am running
[ 58] [TTT] Item: Newton Lau 2.5.0 GuskiS ttt_item_newton running
[ 59] [TTT] Map support 2.5.0 GuskiS ttt_mapsupport. running

[ 60] [TTT] Exploit preventi 2.5.0 GuskiS ttt_exploit_pre running
[ 61] [TTT] Objective remove 2.5.0 GuskiS ttt_objective_r running
[ 62] [TTT] Join team manage 2.5.0 GuskiS ttt_team_manage running
[ 63] [TTT] Say team 2.5.0 GuskiS ttt_say_team.am running
[ 64] [TTT] Show infos 2.5.0 GuskiS ttt_show_infos. running
[ 65] [TTT] Special player i 2.5.0 GuskiS ttt_special_inf running
[ 66] [TTT] Random weapon 2.5.0 GuskiS ttt_random_weap running
[ 67] [TTT] Rules 2.5.0 GuskiS ttt_rules.amxx running
[ 68] [TTT] Version Check 2.5.0 GuskiS ttt_version_che running
[ 69] [TTT] Voice 2.5.0 GuskiS ttt_voice.amxx running

Last edited by Tinch06; 02-28-2015 at 13:15.
Tinch06 is offline
GuskiS
Veteran Member
Join Date: Aug 2007
Location: Latvia
Old 02-28-2015 , 13:48   Re: [v2.5.1, February 15] Trouble in Terrorist Town mod
Reply With Quote #319

Start by making your steam only server That will remove the problem. Error occurs because 47 protocol client is trying to connect server.
__________________
Finished mods:
Trouble in Terrorist Town
MurderMod
The Hidden
Cowboys vs Indians
JailBreak Supreme
Survival Madness
GuskiS is offline
Tinch06
Junior Member
Join Date: Feb 2015
Location: Buenos Aires
Old 02-28-2015 , 16:20   Re: [v2.5.1, February 15] Trouble in Terrorist Town mod
Reply With Quote #320

Quote:
Originally Posted by GuskiS View Post
Start by making your steam only server That will remove the problem. Error occurs because 47 protocol client is trying to connect server.
What can i do for players protocol 47 can play in my server?? I have Dproto but it's dosen't work :/
Tinch06 is offline
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 07:07.


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