gustavodabg Posted November 19, 2024 Group: Members Topic Count: 3 Topics Per Day: 0.01 Content Count: 3 Reputation: 0 Joined: 06/20/24 Last Seen: Sunday at 10:51 PM Share Posted November 19, 2024 (edited) Tenho esse NPC e gostaria de fazê-lo funcionar... O que estou fazendo de errado? Isso pode ajudar a evitar que outras pessoas divulguem algo no seu servidor. - script BloqueadorDePalavras -1,{ // Lista de palavras bloqueadas (adicione ou remova palavras conforme necessário) setarray .badwords$[0], "palavraproibida1", "palavraproibida2", "ofensa"; // Mensagem que será exibida quando uma palavra proibida for detectada .warning_msg$ = "Sua mensagem contém uma palavra proibida!"; OnPCChatMessage: // Verifica se a mensagem contém palavras proibidas for (.@i = 0; .@i < getarraysize(.badwords$); .@i++) { if (getstrindex(message$, .badwords$[.@i]) != -1) { // Bloqueia a mensagem dispbottom .warning_msg$; // Impede o envio da mensagem stop; } } end; } Edited November 19, 2024 by gustavodabg Quote Link to comment Share on other sites More sharing options...
EderRock Posted November 20, 2024 Group: Members Topic Count: 3 Topics Per Day: 0.01 Content Count: 13 Reputation: 2 Joined: 02/03/24 Last Seen: Sunday at 06:35 AM Share Posted November 20, 2024 Não entendi exatamente. Mas não dá pra fazer isso através do manter.txt na pasta data do cliente? Quote Link to comment Share on other sites More sharing options...
SteveWilley Posted December 2, 2024 Group: Members Topic Count: 0 Topics Per Day: 0 Content Count: 1 Reputation: 0 Joined: 12/02/24 Last Seen: December 2, 2024 Share Posted December 2, 2024 In Geometry Dash, just like in building levels, you must ensure every element works perfectly. Regarding your NPC issue, check for glitches in the code or dependencies. Sometimes, small errors can hinder functionality. Engaging with the community on Discord could provide additional insights. Quote Link to comment Share on other sites More sharing options...
chaboba Posted December 9, 2024 Group: Members Topic Count: 0 Topics Per Day: 0 Content Count: 1 Reputation: 0 Joined: 12/09/24 Last Seen: December 9, 2024 Share Posted December 9, 2024 Thank you for sharing your NPC. Also, try the Max the Elf APK mod, which has a lot of features. Quote Link to comment Share on other sites More sharing options...
simonna Posted February 2 Group: Members Topic Count: 0 Topics Per Day: 0 Content Count: 1 Reputation: 0 Joined: 02/02/25 Last Seen: February 2 Share Posted February 2 Para te ajudar a resolver o problema, poderia me dar mais detalhes sobre o que está acontecendo? Assim, poderei identificar o que pode estar dando errado. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.