hlmod.hu
https://hlmod.hu/

exodus chat hiba
https://hlmod.hu/viewtopic.php?f=9&t=30588
Oldal: 2 / 2

Szerző:  titkos [2020.09.03. 20:25 ]
Hozzászólás témája:  Re: exodus chat hiba

ROL_MESTER írta:
Szia Ezt ere cseréld le
  1. if(get_user_flags(id) & TULAJ)
  2.     {
  3.         get_user_team(id, color, 9)
  4.         ChatColor(0, "^1%s^4[Tulaj][%s][MVP %d]^3%s: ^4%s", txtAlive, Rangok[g_Rang[id]][Szint], g_MVP[id], szName, iMessage);
  5.     }
  6.     else if(get_user_flags(id) & ADMIN)
  7.     {
  8.         get_user_team(id, color, 9)
  9.         ChatColor(0, "^1%s^4[Admin][%s][MVP %d]^3%s: ^4%s", txtAlive, Rangok[g_Rang[id]][Szint], g_MVP[id], szName, iMessage);
  10.     }
  11.     else
  12.     {
  13.         if(g_Vip[id] == 0)
  14.         {
  15.         get_user_team(id, color, 9)
  16.         ChatColor(0, "^1%s^4[%s][MVP %d]^3%s: ^1%s", txtAlive, Rangok[g_Rang[id]][Szint], g_MVP[id], szName, iMessage);
  17.         }
  18.         else
  19.         {
  20.         get_user_team(id, color, 9)
  21.         ChatColor(0, "^1%s^4[VIP][%s][MVP %d]^3%s: ^4%s", txtAlive, Rangok[g_Rang[id]][Szint], g_MVP[id], szName, iMessage);
  22.         }
  23.     }

Ezt pedig másold be a plugin végére
  1. stock ChatColor(const id, const szMessage[], any:...) {
  2.     static pnum, players[32], szMsg[190], IdMsg;
  3.     vformat(szMsg, charsmax(szMsg), szMessage, 3);
  4.    
  5.     if(!IdMsg) IdMsg = get_user_msgid("SayText");
  6.    
  7.     if(id) {
  8.         if(!is_user_connected(id)) return;
  9.         players[0] = id;
  10.         pnum = 1;
  11.     }
  12.     else get_players(players, pnum, "ch");
  13.    
  14.     for(new i; i < pnum; i++) {
  15.         message_begin(MSG_ONE, IdMsg, .player = players[i]);
  16.         write_byte(players[i]);
  17.         write_string(szMsg);
  18.         message_end();
  19.     }
  20. }


Anó énis igy csináltam és a cheat rész nem bugolt!


// C:\Users\Felhasznßlˇ\Desktop\┌j mappa\compiler\proba1.sma(1) : error 010: invalid function or declaration
// C:\Users\Felhasznßlˇ\Desktop\┌j mappa\compiler\proba1.sma(2425) : warning 217: loose indentation
// C:\Users\Felhasznßlˇ\Desktop\┌j mappa\compiler\proba1.sma(2449) : warning 217: loose indentation
// C:\Users\Felhasznßlˇ\Desktop\┌j mappa\compiler\proba1.sma(3851) : warning 217: loose indentation
// C:\Users\Felhasznßlˇ\Desktop\┌j mappa\compiler\proba1.sma(3861) : warning 217: loose indentation
// C:\Users\Felhasznßlˇ\Desktop\┌j mappa\compiler\proba1.sma(3881) : warning 217: loose indentation
// C:\Users\Felhasznßlˇ\Desktop\┌j mappa\compiler\proba1.sma(3882) : warning 217: loose indentation
// C:\Users\Felhasznßlˇ\Desktop\┌j mappa\compiler\proba1.sma(3884) : warning 217: loose indentation
// C:\Users\Felhasznßlˇ\Desktop\┌j mappa\compiler\proba1.sma(3893) : warning 217: loose indentation
// C:\Users\Felhasznßlˇ\Desktop\┌j mappa\compiler\proba1.sma(3899) : warning 217: loose indentation
// C:\Users\Felhasznßlˇ\Desktop\┌j mappa\compiler\proba1.sma(3900) : warning 217: loose indentation
//
// 1 Error.
// Could not locate output file compiled\proba1.amx (compile failed).
//


Ebben még tudnál segíteni? Ez az error gyakran előjön és fogalmam sincs, hogy miért.

Szerző:  ROL_MESTER [2020.09.03. 21:11 ]
Hozzászólás témája:  Re: exodus chat hiba

titkos írta:
ROL_MESTER írta:
Szia Ezt ere cseréld le
  1. if(get_user_flags(id) & TULAJ)
  2.     {
  3.         get_user_team(id, color, 9)
  4.         ChatColor(0, "^1%s^4[Tulaj][%s][MVP %d]^3%s: ^4%s", txtAlive, Rangok[g_Rang[id]][Szint], g_MVP[id], szName, iMessage);
  5.     }
  6.     else if(get_user_flags(id) & ADMIN)
  7.     {
  8.         get_user_team(id, color, 9)
  9.         ChatColor(0, "^1%s^4[Admin][%s][MVP %d]^3%s: ^4%s", txtAlive, Rangok[g_Rang[id]][Szint], g_MVP[id], szName, iMessage);
  10.     }
  11.     else
  12.     {
  13.         if(g_Vip[id] == 0)
  14.         {
  15.         get_user_team(id, color, 9)
  16.         ChatColor(0, "^1%s^4[%s][MVP %d]^3%s: ^1%s", txtAlive, Rangok[g_Rang[id]][Szint], g_MVP[id], szName, iMessage);
  17.         }
  18.         else
  19.         {
  20.         get_user_team(id, color, 9)
  21.         ChatColor(0, "^1%s^4[VIP][%s][MVP %d]^3%s: ^4%s", txtAlive, Rangok[g_Rang[id]][Szint], g_MVP[id], szName, iMessage);
  22.         }
  23.     }

Ezt pedig másold be a plugin végére
  1. stock ChatColor(const id, const szMessage[], any:...) {
  2.     static pnum, players[32], szMsg[190], IdMsg;
  3.     vformat(szMsg, charsmax(szMsg), szMessage, 3);
  4.    
  5.     if(!IdMsg) IdMsg = get_user_msgid("SayText");
  6.    
  7.     if(id) {
  8.         if(!is_user_connected(id)) return;
  9.         players[0] = id;
  10.         pnum = 1;
  11.     }
  12.     else get_players(players, pnum, "ch");
  13.    
  14.     for(new i; i < pnum; i++) {
  15.         message_begin(MSG_ONE, IdMsg, .player = players[i]);
  16.         write_byte(players[i]);
  17.         write_string(szMsg);
  18.         message_end();
  19.     }
  20. }


Anó énis igy csináltam és a cheat rész nem bugolt!


// C:\Users\Felhasznßlˇ\Desktop\┌j mappa\compiler\proba1.sma(1) : error 010: invalid function or declaration
// C:\Users\Felhasznßlˇ\Desktop\┌j mappa\compiler\proba1.sma(2425) : warning 217: loose indentation
// C:\Users\Felhasznßlˇ\Desktop\┌j mappa\compiler\proba1.sma(2449) : warning 217: loose indentation
// C:\Users\Felhasznßlˇ\Desktop\┌j mappa\compiler\proba1.sma(3851) : warning 217: loose indentation
// C:\Users\Felhasznßlˇ\Desktop\┌j mappa\compiler\proba1.sma(3861) : warning 217: loose indentation
// C:\Users\Felhasznßlˇ\Desktop\┌j mappa\compiler\proba1.sma(3881) : warning 217: loose indentation
// C:\Users\Felhasznßlˇ\Desktop\┌j mappa\compiler\proba1.sma(3882) : warning 217: loose indentation
// C:\Users\Felhasznßlˇ\Desktop\┌j mappa\compiler\proba1.sma(3884) : warning 217: loose indentation
// C:\Users\Felhasznßlˇ\Desktop\┌j mappa\compiler\proba1.sma(3893) : warning 217: loose indentation
// C:\Users\Felhasznßlˇ\Desktop\┌j mappa\compiler\proba1.sma(3899) : warning 217: loose indentation
// C:\Users\Felhasznßlˇ\Desktop\┌j mappa\compiler\proba1.sma(3900) : warning 217: loose indentation
//
// 1 Error.
// Could not locate output file compiled\proba1.amx (compile failed).
//


Ebben még tudnál segíteni? Ez az error gyakran előjön és fogalmam sincs, hogy miért.


Küld el létszives az sma filét amibe át írtad a dolgokat! :D

Szerző:  titkos [2020.09.03. 21:16 ]
Hozzászólás témája:  Re: exodus chat hiba

ROL_MESTER írta:
titkos írta:
ROL_MESTER írta:
Szia Ezt ere cseréld le
  1. if(get_user_flags(id) & TULAJ)
  2.     {
  3.         get_user_team(id, color, 9)
  4.         ChatColor(0, "^1%s^4[Tulaj][%s][MVP %d]^3%s: ^4%s", txtAlive, Rangok[g_Rang[id]][Szint], g_MVP[id], szName, iMessage);
  5.     }
  6.     else if(get_user_flags(id) & ADMIN)
  7.     {
  8.         get_user_team(id, color, 9)
  9.         ChatColor(0, "^1%s^4[Admin][%s][MVP %d]^3%s: ^4%s", txtAlive, Rangok[g_Rang[id]][Szint], g_MVP[id], szName, iMessage);
  10.     }
  11.     else
  12.     {
  13.         if(g_Vip[id] == 0)
  14.         {
  15.         get_user_team(id, color, 9)
  16.         ChatColor(0, "^1%s^4[%s][MVP %d]^3%s: ^1%s", txtAlive, Rangok[g_Rang[id]][Szint], g_MVP[id], szName, iMessage);
  17.         }
  18.         else
  19.         {
  20.         get_user_team(id, color, 9)
  21.         ChatColor(0, "^1%s^4[VIP][%s][MVP %d]^3%s: ^4%s", txtAlive, Rangok[g_Rang[id]][Szint], g_MVP[id], szName, iMessage);
  22.         }
  23.     }

Ezt pedig másold be a plugin végére
  1. stock ChatColor(const id, const szMessage[], any:...) {
  2.     static pnum, players[32], szMsg[190], IdMsg;
  3.     vformat(szMsg, charsmax(szMsg), szMessage, 3);
  4.    
  5.     if(!IdMsg) IdMsg = get_user_msgid("SayText");
  6.    
  7.     if(id) {
  8.         if(!is_user_connected(id)) return;
  9.         players[0] = id;
  10.         pnum = 1;
  11.     }
  12.     else get_players(players, pnum, "ch");
  13.    
  14.     for(new i; i < pnum; i++) {
  15.         message_begin(MSG_ONE, IdMsg, .player = players[i]);
  16.         write_byte(players[i]);
  17.         write_string(szMsg);
  18.         message_end();
  19.     }
  20. }


Anó énis igy csináltam és a cheat rész nem bugolt!


// C:\Users\Felhasznßlˇ\Desktop\┌j mappa\compiler\proba1.sma(1) : error 010: invalid function or declaration
// C:\Users\Felhasznßlˇ\Desktop\┌j mappa\compiler\proba1.sma(2425) : warning 217: loose indentation
// C:\Users\Felhasznßlˇ\Desktop\┌j mappa\compiler\proba1.sma(2449) : warning 217: loose indentation
// C:\Users\Felhasznßlˇ\Desktop\┌j mappa\compiler\proba1.sma(3851) : warning 217: loose indentation
// C:\Users\Felhasznßlˇ\Desktop\┌j mappa\compiler\proba1.sma(3861) : warning 217: loose indentation
// C:\Users\Felhasznßlˇ\Desktop\┌j mappa\compiler\proba1.sma(3881) : warning 217: loose indentation
// C:\Users\Felhasznßlˇ\Desktop\┌j mappa\compiler\proba1.sma(3882) : warning 217: loose indentation
// C:\Users\Felhasznßlˇ\Desktop\┌j mappa\compiler\proba1.sma(3884) : warning 217: loose indentation
// C:\Users\Felhasznßlˇ\Desktop\┌j mappa\compiler\proba1.sma(3893) : warning 217: loose indentation
// C:\Users\Felhasznßlˇ\Desktop\┌j mappa\compiler\proba1.sma(3899) : warning 217: loose indentation
// C:\Users\Felhasznßlˇ\Desktop\┌j mappa\compiler\proba1.sma(3900) : warning 217: loose indentation
//
// 1 Error.
// Could not locate output file compiled\proba1.amx (compile failed).
//


Ebben még tudnál segíteni? Ez az error gyakran előjön és fogalmam sincs, hogy miért.


Küld el létszives az sma filét amibe át írtad a dolgokat! :D


Csatolmányok:
teszt.sma [128.14KiB]
Letöltve 65 alkalommal.

Szerző:  ROL_MESTER [2020.09.03. 21:42 ]
Hozzászólás témája:  Re: exodus chat hiba

AMX Mod X Compiler 1.9.0.5271
Copyright (c) 1997-2006 ITB CompuPhase
Copyright (c) 2004-2013 AMX Mod X Team

Warning: Loose indentation on line 2428
Warning: Loose indentation on line 2433
Warning: Loose indentation on line 2453
Warning: Symbol "client_disconnect" is marked as deprecated: Use client_disconnected() instead. on line 3801

Warning: Loose indentation on line 3855
Warning: Loose indentation on line 3865
Warning: Loose indentation on line 3885
Warning: Loose indentation on line 3886
Warning: Loose indentation on line 3888
Warning: Loose indentation on line 3897
Warning: Loose indentation on line 3903
Warning: Loose indentation on line 3904
Header size: 4308 bytes
Code size: 171968 bytes
Data size: 308016 bytes
Stack/heap size: 16384 bytes
Total requirements: 500676 bytes

12 Warnings.
Done.

Tessék probáld meg nálam le fordul!

Csatolmányok:
teszt.sma [127.97KiB]
Letöltve 59 alkalommal.

Szerző:  titkos [2020.09.03. 22:07 ]
Hozzászólás témája:  Re: exodus chat hiba

ROL_MESTER írta:
AMX Mod X Compiler 1.9.0.5271
Copyright (c) 1997-2006 ITB CompuPhase
Copyright (c) 2004-2013 AMX Mod X Team

Warning: Loose indentation on line 2428
Warning: Loose indentation on line 2433
Warning: Loose indentation on line 2453
Warning: Symbol "client_disconnect" is marked as deprecated: Use client_disconnected() instead. on line 3801

Warning: Loose indentation on line 3855
Warning: Loose indentation on line 3865
Warning: Loose indentation on line 3885
Warning: Loose indentation on line 3886
Warning: Loose indentation on line 3888
Warning: Loose indentation on line 3897
Warning: Loose indentation on line 3903
Warning: Loose indentation on line 3904
Header size: 4308 bytes
Code size: 171968 bytes
Data size: 308016 bytes
Stack/heap size: 16384 bytes
Total requirements: 500676 bytes

12 Warnings.
Done.

Tessék probáld meg nálam le fordul!

Teszteltem, de így se müködik

Szerző:  Pika [2020.09.04. 19:07 ]
Hozzászólás témája:  Re: exodus chat hiba

Gondolom régebbi a fordítód, mint ROL_MESTER-nek.

Szerző:  norbee.16 [2020.09.04. 19:40 ]
Hozzászólás témája:  Re: exodus chat hiba

Első sorban töröld a speciális karaktert. Error a lényeg a warning, nem igazán befolyásolja a plugin mükődését. Sor eltoltodás meg valami mást jelez igazából.

Helyett:
  1. #include <amxmodx>


Ez:
  1. #include <amxmodx>


Mikor átállítod utf8 boom-ra vagy boom nélkülire(már nem emlékszem), akkor be kreál pár speciális karaktert és azért nem tudja fordítani. Pontosan ezeket töröld "#".

Szerző:  titkos [2020.09.04. 19:45 ]
Hozzászólás témája:  Re: exodus chat hiba

norbee.16 írta:
Első sorban töröld a speciális karaktert. Error a lényeg a warning, nem igazán befolyásolja a plugin mükődését. Sor eltoltodás meg valami mást jelez igazából.

Helyett:
  1. #include <amxmodx>


Ez:
  1. #include <amxmodx>


Mikor átállítod utf8 boom-ra vagy boom nélkülire(már nem emlékszem), akkor be kreál pár speciális karaktert és azért nem tudja fordítani. Pontosan ezeket töröld "#".

Elnézést a fordítani sikerült viszont a hiba ugyan úgy megmaradt.

Szerző:  norbee.16 [2020.09.04. 19:47 ]
Hozzászólás témája:  Re: exodus chat hiba

Plugin listát tudnál adni? Használsz valami olyan plugint ami a chathez hozzá piszkál? Vagyis chathez van köze?

Szerző:  titkos [2020.09.04. 19:56 ]
Hozzászólás témája:  Re: exodus chat hiba

norbee.16 írta:
Plugin listát tudnál adni? Használsz valami olyan plugint ami a chathez hozzá piszkál? Vagyis chathez van köze?

Én is gondoltam erre viszont kikapcsoltam minden plugint és csak ez futott.
UltimateBanssma.amxx

;exodus.amxx debug
teszt.amxx debug





; AMX Mod X plugins

; Admin Base - Always one has to be activated
admin.amxx ; admin base (required for any admin-related)
;admin_sql.amxx ; admin base - SQL version (comment admin.amxx)

; Basic
admincmd.amxx ; basic admin console commands
adminhelp.amxx ; help command for admin console commands
adminslots.amxx ; slot reservation
multilingual.amxx ; Multi-Lingual management

; Menus
menufront.amxx ; front-end for admin menus
cmdmenu.amxx ; command menu (speech, settings)
plmenu.amxx ; players menu (kick, ban, client cmds.)
telemenu.amxx ; teleport menu (Fun Module required!)
mapsmenu.amxx ; maps menu (vote, changelevel)
pluginmenu.amxx ; Menus for commands/cvars organized by plugin

; Chat / Messages
adminchat.amxx ; console chat commands
antiflood.amxx ; prevent clients from chat-flooding the server
scrollmsg.amxx ; displays a scrolling message
imessage.amxx ; displays information messages
adminvote.amxx ; vote commands

; Map related
nextmap.amxx ; displays next map in mapcycle
mapchooser.amxx ; allows to vote for next map
timeleft.amxx ; displays time left on map

; Configuration
pausecfg.amxx ; allows to pause and unpause some plugins
statscfg.amxx ; allows to manage stats plugins via menu and commands

; Counter-Strike
;restmenu.amxx ; restrict weapons menu
statsx.amxx ; stats on death or round end (CSX Module required!)
;miscstats.amxx ; bunch of events announcement for Counter-Strike
;stats_logging.amxx ; weapons stats logging (CSX Module required!)


; Custom - Add 3rd party plugins here

hackdetector.amxx
galileo.amxx

multijumpsma.amxx
bullet_damagesma.amxx
knifespeedsma.amxx
amxmodx_12218-amx_parachute.amxx
rush.amxx
countrycheckersma.amxx debug
advanced_resetscoresma.amxx
C4Pluginsma.amxx
bombaplantsma.amxx
bombsite_locksma.amxx
amxmodx-12239-kill_assistsma.amxx
reload_speedsma.amxx
fall_damage_editorsma.amxx
BlockGrenadeInfoSoundsma.amxx
round_end_sounds_v3sma.amxx
amxmodx_14475-amx_demorecorder.amxx
gamename.amxx
reapi_no_team_flashsma.amxx
admin_espsma.amxx
flashlight_no_spamsma.amxx

Oldal: 2 / 2 Minden időpont UTC+01:00 időzóna szerinti
Powered by phpBB® Forum Software © phpBB Limited
https://www.phpbb.com/