View Single Post
Re: Podbot3.x
Old
  (#11)
-Cop-
Member
 
Status: Offline
Posts: 8
Join Date: Nov 2010
Default Re: Podbot3.x - 25-11-2010

Quote:
Originally Posted by KWo View Post
Show me Your users.ini contents, but change all Your passwords You have there - so nobody can see them here - and STEAM_IDs if You are using them.
why? whaT the point in my users.ini?

Quote:
Originally Posted by KWo View Post
female model is AMX X problem, not podbot mm problem. If AMX X doesn' set any flags for bots, that I cannot do anything with that.

sorry, i know about this, before my asking:

Quote:
Originally Posted by -Cop-
3. just an interesting idea. The new version of bots you want an option that would allow bots to understand the system as living players. to use the flags of the AMX users.ini
your answering:

Quote:
Originally Posted by KWo
Now I got Your idea, but there is no ready solution. ...bla bla bla... If this is an amxx plugin, You can give me the link, I'll take a look at its code. Maybe there is something which prevents to use it correctly with bots.
im giving all codes for u, - users ini ang plug code

Quote:
Originally Posted by -Cop-
its very simple plugin, this code

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

public plugin_init() {
register_plugin("Lady Admin", "2.0", "by @)(otnik inc.")
register_event("ResetHUD", "resetModel", "b")
return PLUGIN_CONTINUE
}

public plugin_precache() {
precache_model("models/player/Someonefemodel_te/someonefemodel_te.mdl")
precache_model("models/player/Someonefempdel_ct/someonefemodel_ct.mdl")

return PLUGIN_CONTINUE
}

public resetModel(id, level, cid) {
if (get_user_flags(id) & ADMIN_LEVEL_H) {
new CsTeams:userTeam = cs_get_user_team(id)
if (userTeam == CS_TEAM_T) {
cs_set_user_model(id, "someonefemodel_te")
}
else if(userTeam == CS_TEAM_CT) {
cs_set_user_model(id, "someonefemodel_ct")
}
else {
cs_reset_user_model(id)
}
}

return PLUGIN_CONTINUE
but this code worked with user.ini for real players with "t" flag (ADMIN_LEVEL_H). also, for different models i can use other flag and other path's and filenames

Code:
// users.ini

"Someone Player 1" "" "tz" "k"
"Someone Player 2" "" "tz" "k"

// ets
in User.ini im recorded all bots fe-name (Kim_Basinger, Jennifer_Anniston, Bridget_Fonda, and ets), starting the game, and understand after, that user.ini not work for bots
and and finally, u talk me this?

Quote:
Originally Posted by KWo View Post
female model is AMX X problem, not podbot mm problem. If AMX X doesn' set any flags for bots, that I cannot do anything with that.
where are your logic? you not need my users.ini. or you forget to write that, or you make a fool of me.
lol. I made myself plug-in faster than to get a constructive conversation with you.

Last edited by -Cop-; 25-11-2010 at 23:40..
  
Reply With Quote