User
Pass
2FA
 
 

[rezolvat]Problema fraguri
Go to page 1, 2, 3  Next    
 
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.    Freakz Forum Index -> Trash Bin -> CS 2006-2019 (Archived) -> Plugins - Help / Support
Author Message3683
DaNy-
[Banned user]


Banned


Status: Offline
(since 15-03-2015 15:23)
Joined: 16 Nov 2014
Posts: 917, Topics: 124
Location: Pãmânt

Reputation: 35.1
Votes: 25

   
Post Posted: 05-12-2014, 16:09:45 | Translate post to: ... (Click for more languages)

Am si eu o problema, cand fac playeri frag (la uni) nu li se pune fragurile in /rankstats respectiv /top15.
Ma ajuta cineva? Sau sa-mi dati un plugin top15 cu tot cu /rank / /rankstats dala clasic.



0 0
  
Back to top
View user's profile Send private message Yahoo! Messenger ID
Khajiit

[Away]



Status: Offline
(since 01-04-2019 20:33)
Joined: 19 Jun 2013
Posts: 3428, Topics: 110
Location: Away for a long time.

Reputation: 48.4
Votes: 145

          Battletag: postrow.ID_BATTLE_NET}  am-nevoie-de-iconite-la-profil 
Post Posted: 05-12-2014, 16:14:20 | Translate post to: ... (Click for more languages)

Presupun cã ai Furien. Încearcã cu alt rankstats ãsta
Dar nu uita cã: kill-urile cu laser,arme speciale(gen arbaletã,arc, rachetã) nu se vor pune.

0 0
  
Back to top
View user's profile Send private message Yahoo! Messenger ID
DaNy-
[Banned user]


Banned


Status: Offline
(since 15-03-2015 15:23)
Joined: 16 Nov 2014
Posts: 917, Topics: 124
Location: Pãmânt

Reputation: 35.1
Votes: 25

   
Post Posted: 05-12-2014, 16:34:13 | Translate post to: ... (Click for more languages)

Frate am spus top15/rankstats/rank clasic.


0 0
  
Back to top
View user's profile Send private message Yahoo! Messenger ID
Khajiit

[Away]



Status: Offline
(since 01-04-2019 20:33)
Joined: 19 Jun 2013
Posts: 3428, Topics: 110
Location: Away for a long time.

Reputation: 48.4
Votes: 145

          Battletag: postrow.ID_BATTLE_NET}  am-nevoie-de-iconite-la-profil 
Post Posted: 05-12-2014, 16:56:56 | Translate post to: ... (Click for more languages)

stats.amxx îl ai in plugins.ini ºi-l gãseºti în plugins/
0 0
  
Back to top
View user's profile Send private message Yahoo! Messenger ID
-P!C@-

[Simply Normal]



Status: Offline
(since 21-04-2022 19:07)
Joined: 28 May 2012
Posts: 21086, Topics: 1601
Location: Constanta

Reputation: 1870.3
Votes: 781

Post Posted: 05-12-2014, 17:11:16 | Translate post to: ... (Click for more languages)

Vezi daca te ajuta pluginul asta: http://www78.zippyshare.com/v/32619522/file.html



0 0
  
Back to top
View user's profile Send private message
DaNy-
[Banned user]


Banned


Status: Offline
(since 15-03-2015 15:23)
Joined: 16 Nov 2014
Posts: 917, Topics: 124
Location: Pãmânt

Reputation: 35.1
Votes: 25

   
Post Posted: 05-12-2014, 17:43:50 | Translate post to: ... (Click for more languages)

Multumesc, ca sa nu mai fac alt topic, ma puteti ajuta si cu un plugin bots? Adica sa fie 2 boti spectatori non-stop?


0 0
  
Back to top
View user's profile Send private message Yahoo! Messenger ID
-P!C@-

[Simply Normal]



Status: Offline
(since 21-04-2022 19:07)
Joined: 28 May 2012
Posts: 21086, Topics: 1601
Location: Constanta

Reputation: 1870.3
Votes: 781

Post Posted: 05-12-2014, 18:23:59 | Translate post to: ... (Click for more languages)

Poftim baga pluginul asta: http://www5.zippyshare.com/v/6809093/file.html
De asemenea in amxx.cfg trebuie sa treci:
fakebot "1"
fakebot_name "ADD2FAV.FREAKZ.RO"
fakebot_name "ADD2FAV.FREAKZ.RO"
fakebot_maxplayers "31"
In loc de add2fav.freakz.ro pui numele serverului tau. Fakeboot_maxplayers e numarul de jucatori la care butul ia kick, daca bagi 2 buti setezi 30.




0 0
  
Back to top
View user's profile Send private message
EDUTz

[HardcoreAmxxScripter]



Status: Offline
(since 15-08-2021 16:34)
Joined: 27 Dec 2010
Posts: 4306, Topics: 244
Location: Jud. Miserupia, sat Bagadanc

Reputation: 4085
Votes: 179

         
Post Posted: 05-12-2014, 18:25:40 | Translate post to: ... (Click for more languages)

pe asta l-am folosit eu o perioada, sper sa fie totul ok -

Code:
#include <amxmodx>
#include <fakemeta>
#include <cstrike>

#define PLUGIN "Bot name2"
#define VERSION "1.0"
#define AUTHOR "No0ZZy;"


new g_pBotName;
new g_pBotName2;
new botsconnected = 0;
new jucatori = 0;
public plugin_init()
{
   register_plugin(PLUGIN, VERSION, AUTHOR);
   g_pBotName = register_cvar("bw_botname", "- Vizitati forumul nostru -");
   g_pBotName2 = register_cvar("bw_botname2", "- http://www.zm3.freakz.ro -");
   register_event("HLTV","event_newround", "a","1=0", "2=0"); // it's called every on new round
   CreateBot()

}


public client_putinserver()
{
   jucatori++
   if(jucatori >= 30)
   {
      new szBotName[33];
      new szBotName2[33];
      get_pcvar_string(g_pBotName, szBotName, 32);
      get_pcvar_string(g_pBotName2, szBotName2, 32);
      server_cmd("kick ^"%s^"", szBotName);
      server_cmd("kick ^"%s^"", szBotName2);
      botsconnected = 0;
   }
}

public client_disconnect()
{
   jucatori--
   if(jucatori <= 27)
   CreateBot()
}

public CreateBot()
{
   if(botsconnected == 1) return;
   new szBotName[33];
   get_pcvar_string(g_pBotName, szBotName, 32);
           
   new id = engfunc(EngFunc_CreateFakeClient, szBotName);
   engfunc(EngFunc_FreeEntPrivateData, id);
   set_pev(id, pev_flags, pev( id, pev_flags ) | FL_FAKECLIENT);
           
   new szMsg[128];
   dllfunc(DLLFunc_ClientConnect, id, szBotName, "127.0.0.1", szMsg);
   dllfunc(DLLFunc_ClientPutInServer, id);
   
   new szBotName2[33];
   get_pcvar_string(g_pBotName2, szBotName2, 32);
   
   new id2 = engfunc(EngFunc_CreateFakeClient, szBotName2);
   engfunc(EngFunc_FreeEntPrivateData, id2);
   set_pev(id2, pev_flags, pev( id, pev_flags ) | FL_FAKECLIENT);
   
   new szMsg2[128];
   dllfunc(DLLFunc_ClientConnect, id2, szBotName2, "127.0.0.1", szMsg2);
   dllfunc(DLLFunc_ClientPutInServer, id2);
   botsconnected = 1
}




Pentru pluginuri complicate le fac cu $$ pe paypal/psc. PM

0 0
  
Back to top
View user's profile Send private message Yahoo! Messenger ID
DaNy-
[Banned user]


Banned


Status: Offline
(since 15-03-2015 15:23)
Joined: 16 Nov 2014
Posts: 917, Topics: 124
Location: Pãmânt

Reputation: 35.1
Votes: 25

   
Post Posted: 05-12-2014, 19:16:22 | Translate post to: ... (Click for more languages)

l-am incercat edutz... are buguri.
PIC@ imi poti da unu care boti sa steam permanent kick, adica daca e serveru full sa ramana spec.



0 0
  
Back to top
View user's profile Send private message Yahoo! Messenger ID
EDUTz

[HardcoreAmxxScripter]



Status: Offline
(since 15-08-2021 16:34)
Joined: 27 Dec 2010
Posts: 4306, Topics: 244
Location: Jud. Miserupia, sat Bagadanc

Reputation: 4085
Votes: 179

         
Post Posted: 05-12-2014, 19:30:12 | Translate post to: ... (Click for more languages)

offf parca sunteti copii din aia de 12 ani, zi frate ce buguri are ... la mine n-a avut nici un bug .. ce bug ai intalnit tu nu stiu ...



Pentru pluginuri complicate le fac cu $$ pe paypal/psc. PM

0 0
  
Back to top
View user's profile Send private message Yahoo! Messenger ID
DaNy-
[Banned user]


Banned


Status: Offline
(since 15-03-2015 15:23)
Joined: 16 Nov 2014
Posts: 917, Topics: 124
Location: Pãmânt

Reputation: 35.1
Votes: 25

   
Post Posted: 05-12-2014, 19:43:27 | Translate post to: ... (Click for more languages)

Pei boti apareau 2 la spec, 1 la ct, unu la t.
Si mi-a picat si serveru -.



0 0
  
Back to top
View user's profile Send private message Yahoo! Messenger ID
-P!C@-

[Simply Normal]



Status: Offline
(since 21-04-2022 19:07)
Joined: 28 May 2012
Posts: 21086, Topics: 1601
Location: Constanta

Reputation: 1870.3
Votes: 781

Post Posted: 05-12-2014, 19:51:03 | Translate post to: ... (Click for more languages)

Nu mai pune linia fakebot_maxplayers "31".



0 0
  
Back to top
View user's profile Send private message
EDUTz

[HardcoreAmxxScripter]



Status: Offline
(since 15-08-2021 16:34)
Joined: 27 Dec 2010
Posts: 4306, Topics: 244
Location: Jud. Miserupia, sat Bagadanc

Reputation: 4085
Votes: 179

         
Post Posted: 05-12-2014, 20:17:07 | Translate post to: ... (Click for more languages)

ai pus ca desteptul 2 pluginuri !!!!!!!!! pluginul meu nu baga decat 2 boti ATAT ! amandoi spec !!!!! si ies singuri cand sunt 30 de jucatori. Daca vrei sa nu mai iasa deloc, editeaza if-ul ala ce dracu ?!?!?!
@ pic@, i-am dat un plugin editat de mine, nu are optiunea aia de care zici tu.




Pentru pluginuri complicate le fac cu $$ pe paypal/psc. PM

0 0
  
Back to top
View user's profile Send private message Yahoo! Messenger ID
DaNy-
[Banned user]


Banned


Status: Offline
(since 15-03-2015 15:23)
Joined: 16 Nov 2014
Posts: 917, Topics: 124
Location: Pãmânt

Reputation: 35.1
Votes: 25

   
Post Posted: 05-12-2014, 22:11:32 | Translate post to: ... (Click for more languages)

Edutz, ceva nu e in regula, boti intra spectatori, dar dupa ce schimb mapa pica serverul.
Ce are?



0 0
  
Back to top
View user's profile Send private message Yahoo! Messenger ID
Happy =]]

[I'm in your mind !]



Status: Offline
(since 02-05-2020 11:17)
Joined: 17 Mar 2012
Posts: 10538, Topics: 450
Location: In mintea ta !

Reputation: 553
Votes: 204

         
Post Posted: 05-12-2014, 22:18:45 | Translate post to: ... (Click for more languages)

Ce eroare iti da in consola ?





Pentru orice problema PM.
Nu ofer asistenta in privat.

0 0
  
Back to top
View user's profile Send private message Yahoo! Messenger ID

  Topic locked


Topic is closed, you cannot post any messages in it anymore

Locked by -P!C@-, 07 December 2014 13:53



 
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.    Freakz Forum Index -> Trash Bin -> CS 2006-2019 (Archived) -> Plugins - Help / Support  
Go to page 1, 2, 3  Next    


The time now is 23-07-2025, 23:49:31
Copyright info

Based on phpBB ro/com
B

 
 
 







I forgot my password