Raised This Month: $ Target: $400
 0% 

Showing results 1 to 25 of 72
Search took 0.04 seconds.
Search: Posts Made By: powwoww
Forum: Module Coding 12-17-2009, 00:05
Replies: 8
Views: 3,908
Posted By powwoww
Forum: Scripting Help 12-16-2009, 04:49
Replies: 7
Views: 1,975
Posted By powwoww
Re: Problem with bcm4

The amount of entities(blocks) seems no limit(can be greater than 2000), but precaching models has
Forum: Module Coding 12-16-2009, 04:47
Replies: 8
Views: 3,908
Posted By powwoww
Re: [REQ]Old version of query_client_cvar

I know Non-Steam means Non-Support,but I'm still keeping the wish of the dll.
Forum: Scripting Help 12-16-2009, 04:33
Replies: 2
Views: 1,404
Posted By powwoww
Re: Blockmaker

I knew the fatal bug in bm4.01, the plugin only supports model length < 32,
so server will crash when viewmodel is models/zombie_plague/v_knife_zombie.mdl
And I didn't know why the author ignored...
Forum: Module Coding 12-13-2009, 04:01
Replies: 8
Views: 3,908
Posted By powwoww
Re: [REQ]Old version of query_client_cvar

Could you please just modify and compile the amxmodx_mm.dll for me, with the TrieSetArray bug fix,:cry::
http://forums.alliedmods.net/showthread.php?t=109587
I am sure that I need the old version...
Forum: Scripting Help 12-12-2009, 06:00
Replies: 20
Views: 8,175
Posted By powwoww
Re: Engine vs Fakemeta

Engine looks more standard and safe, but code is lengthy I think:
Engine:
entity_set_int(ent,EV_INT_XXX,XXX)
VS Fakemeta:
set_pev(ent,pev_XXX,XXX)
Forum: Scripting Help 12-12-2009, 05:54
Replies: 6
Views: 4,395
Posted By powwoww
Re: how to get user max heath and set user max health?

What you said is not he need, by the way, fun module is direct and simple, set_user_health uses interger( not Float)
Float version is set_pev(id,pev_health,123.0) in fakemeta
Forum: Scripting Help 12-12-2009, 03:38
Replies: 20
Views: 10,384
Posted By powwoww
Re: How to Respawn func_breakable?

This is crazy,I give up...
I think I have to use global data to store the prop and recreate them
Forum: Scripting Help 12-11-2009, 22:51
Replies: 20
Views: 10,384
Posted By powwoww
Re: How to Respawn func_breakable?

Could you show me the detail please?
Forum: Scripting Help 12-11-2009, 22:33
Replies: 20
Views: 10,384
Posted By powwoww
Re: How to Respawn func_breakable?

I got the error: Hit a func_breakable with no model(models/bigtree.mdl)
after touch it..
Forum: Scripting Help 12-10-2009, 21:07
Replies: 1
Views: 686
Posted By powwoww
Re: does anyone know how to make additional infection sound in zombie plague ?

Custom resource outside is supported in zp 4.3 version, check the zombieplague.ini in amxx configs folder for details.
I'm afraid you should modify the main plugin code to make it, change the...
Forum: Scripting Help 12-10-2009, 20:55
Replies: 2
Views: 934
Posted By powwoww
Re: Changing server status - amount of players currently on server

Make fakeclients(Bots) to fill, but this may not be the unique way.

makebot(botname[]) {
new bot = engfunc(EngFunc_CreateFakeClient,botname)
if(!bot) return 0
...
Forum: Scripting Help 12-10-2009, 20:51
Replies: 6
Views: 4,395
Posted By powwoww
Re: how to get user max heath and set user max health?

I saw the pev_max_health in fakemeta_const.inc but didn't know what it use for...
Forum: Scripting Help 12-10-2009, 20:10
Replies: 20
Views: 10,384
Posted By powwoww
Re: How to Respawn func_breakable?

Of course I can remove and create it to reset, but this will not be fine in the find_ent loop

Now a new problem comes up: the spawn function will make set_size useless...
Forum: Scripting Help 12-10-2009, 06:07
Replies: 20
Views: 10,384
Posted By powwoww
Re: How to Respawn func_breakable?

Does it mean the breakable entity can not be created dynamically with Spawn function?
Look, can I set the entity props(health,model.etc) to "RESET" the breakable after it is destroyed, and how?
Forum: Scripting Help 12-10-2009, 03:44
Replies: 21
Views: 4,773
Posted By powwoww
Re: Money Help

I don't think using a plugin to change the limit is a good way...
Forum: Scripting Help 12-10-2009, 03:35
Replies: 20
Views: 10,384
Posted By powwoww
Re: How to Respawn func_breakable?

Did you test it? But I found the code causing cash Host_Error below:
PF_precache_sound_I: "debris/bustglass1.wav" Precache can only be done in spawn functions
Forum: Scripting Help 12-09-2009, 09:16
Replies: 20
Views: 10,384
Posted By powwoww
How to Respawn func_breakable?

new ent = create_entity("func_breakable")
...
the entity works fine but it does not spawn(after being destroyed,the entity is still valid) at round start and I can't do it in a suitable way, could...
Forum: Scripting Help 12-07-2009, 21:18
Replies: 3
Views: 1,232
Posted By powwoww
Re: Best way to store multple data

If you only save and load data of one player, you can use nvault functions for local using,but nvault does not support advanced searches and data sharing...
Check nvault.inc for more...
Forum: Scripting Help 12-07-2009, 21:06
Replies: 21
Views: 4,773
Posted By powwoww
Re: Money Help

This module is better than other money_ul plugins I think, because it does not have any compatible problems with any amxx plugins
By the way, you can use server_cmd(";meta unload maxmoney") to...
Forum: Scripting Help 12-07-2009, 20:47
Replies: 0
Views: 588
Posted By powwoww
What's wrong with this stock function?

stock utfEqual(const str1[],const str2[]){
new slen = strlen(str1)
if(slen != strlen(str2)) return 0
new t
for(new i=0;i<slen;++i){
t = str1[i]-str2[i]

if(t && abs(t)!=256) return 0...
Forum: Scripting Help 12-06-2009, 21:12
Replies: 0
Views: 1,958
Posted By powwoww
Can't use keys or values with a \

When the client types name test\ in his console, the server console says can't use keys or values with a \ , is this a bug that will cause server crash? And how to prevent it?
Forum: Scripting Help 12-04-2009, 23:14
Replies: 2
Views: 993
Posted By powwoww
Forum: Scripting Help 12-04-2009, 23:13
Replies: 2
Views: 993
Posted By powwoww
Forum: Off-Topic 12-04-2009, 23:10
Replies: 1
Views: 3,508
Posted By powwoww
ADMIN_CVAR(g) <=> ADMIN_RCON(l) <=> rcon ?!

Most of us may think that these two privileges are different,but I don't:

amx_cvar rcon_password XXX
rcon_password XXX

rcon XXX
rcon amx_addadmin XXX
......

:twisted:
Showing results 1 to 25 of 72

 
Forum Jump

All times are GMT -4. The time now is 13:28.


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