Raised This Month: $12 Target: $400
 3% 

Showing results 1 to 25 of 500
Search took 0.02 seconds.
Search: Posts Made By: Liverwiz
Forum: Scripting Help 11-18-2012, 21:39
Replies: 7
Views: 1,610
Posted By Liverwiz
Re: How to set this?

As a note. Because i only briefly read your code.
new Total = (Frag =- Death)
is crazy.
1. why are you -attempting- to set your Frag as subtracted by Death?
2. its Frag -= Death to do Frag = Frag...
Forum: Scripting Help 10-25-2012, 08:48
Replies: 8
Views: 1,606
Posted By Liverwiz
Re: File Handles !!

read the include files.....
Forum: Suggestions / Requests 10-25-2012, 08:15
Replies: 10
Views: 1,524
Posted By Liverwiz
Re: Server lagg when loading rank

There is probably a better way than using Dynamic Arrays and all of the natives required for that.
I see you use nvault as your data structure....SQL will also be faster because it has sorting...
Forum: Suggestions / Requests 10-22-2012, 20:44
Replies: 1
Views: 712
Posted By Liverwiz
Re: how to check if the player get Full-Flashed

search. This has been asked more times than i've watched erotic videos.
Forum: Suggestions / Requests 10-22-2012, 20:43
Replies: 15
Views: 3,310
Posted By Liverwiz
Re: [Request] Plugin who gives some bonuses

There is a typo. Here is the correction....
static saytext = 0
if(!saytext) saytext = get_user_msgid("SayText")

What this is doing is initializing a static variable to 0. This allows the...
Forum: Suggestions / Requests 10-21-2012, 08:32
Replies: 15
Views: 3,310
Posted By Liverwiz
Re: [Request] Plugin who gives some bonuses

Are there any errors in your error logs?
Forum: Scripting Help 10-19-2012, 19:33
Replies: 4
Views: 4,230
Posted By Liverwiz
Re: How to write StatusText with green, blue, red colors

Click on connor's link in his signature. "ColorChat Module"
Read that code
Learn how that works.
Forum: Scripting Help 10-19-2012, 19:31
Replies: 8
Views: 7,859
Posted By Liverwiz
Re: client_connect & client_putinserver

If you're wanting to do something to a client that is steamID specific. Do it at client_authorized. If you're looking to do something to a client that has connected, and you want to make sure has...
Forum: Scripting Help 10-19-2012, 19:24
Replies: 16
Views: 2,662
Posted By Liverwiz
Re: Scoreboard question

The question is all fine and dandy. The problem is what you're trying to accomplish.
Forum: Scripting Help 10-19-2012, 19:22
Replies: 6
Views: 1,169
Posted By Liverwiz
Re: Bitwise: more compact code

SURE!
giVipFlags[id] |= VIP_A; giVipFlags[id] &= ~VIP_Z
Forum: Scripting Help 10-14-2012, 13:08
Replies: 4
Views: 1,073
Posted By Liverwiz
Display Wait bar

You know that bar that pops up when you're planting/defusing the bomb?
1. What is that called?
2. How could i display one to a player?
Forum: Scripting Help 10-13-2012, 09:21
Replies: 3
Views: 1,209
Posted By Liverwiz
Re: [HELP]My Chat System Error

Just give it a shot and post your code. Try again, starting from scratch. You won't learn any other way.

If you're looking for more guidance go read some other people's code in the approved...
Forum: Suggestions / Requests 10-12-2012, 20:33
Replies: 7
Views: 1,703
Posted By Liverwiz
Re: chang team when player was kill

try posting in "Request"
Forum: Suggestions / Requests 10-11-2012, 10:23
Replies: 3
Views: 1,061
Posted By Liverwiz
Re: Random Players Can Use Admin Menu Commands

what mods are you running?
What is the default admin privileges? found in amxx.cfg; CVAR amx_default_access. Should be set to "z"
Forum: Scripting Help 10-11-2012, 10:18
Replies: 10
Views: 2,484
Posted By Liverwiz
Re: Help Here Coders

https://forums.alliedmods.net/showthread.php?t=198012
:nono: don't post the same question in two different threads.

And make your thread topics descriptive. not "zomfg my plug all br0kes. FIX...
Forum: Scripting Help 10-11-2012, 10:11
Replies: 3
Views: 1,209
Posted By Liverwiz
Re: [HELP]My Chat System Error

for(new i = 0; i <= get_maxplayers(); i++) {
get_user_name(i, name, 31)
There is no player id of 0. This will throw an error. This is also horrendous. Use get_players

By the way you're...
Forum: Code Snippets/Tutorials 10-11-2012, 09:29
Replies: 19
Views: 9,174
Posted By Liverwiz
Re: Wallhang / Wallclimb

I'd also suggest using a bitsum instead of a bool array.
As such....
new bool:g_bStuckToWall[33];
:arrow:
new g_bStuckToWall;
#define stickPlayer(%1) g_bStuckToWall |= (1 << (%1 & 31));...
Forum: Unapproved/Old Plugins 10-08-2012, 19:53
Replies: 10
Views: 3,620
Posted By Liverwiz
Re: Solo Gunner Mode

It seemed to resemble it. I only glanced over the colorchat portion. Either way....whoever he got that code from should be credited for it.
Forum: Suggestions / Requests 10-08-2012, 18:23
Replies: 14
Views: 3,359
Posted By Liverwiz
Re: Lang_player

ML is in lang documents.

Usually the plugin's name.txt found in amxmodx/data/lang
Forum: Suggestions / Requests 10-08-2012, 08:18
Replies: 15
Views: 3,310
Posted By Liverwiz
Re: [Request] Plugin who gives some bonuses

guipatinador is correct. The mod resets all values at round end (glow, speed, gravity), along with the bonus player. It then chooses a new bonus player at the end of the freeze time and sets all...
Forum: Suggestions / Requests 10-07-2012, 20:38
Replies: 15
Views: 3,310
Posted By Liverwiz
Re: [Request] Plugin who gives some bonuses

Here you go. Let me know if there are any bugs. I did not test it.

#define MIN_CT_PLAYERS 2 // This is the minimum amount of eligible CT players to set bonus
#define MIN_SERVER_PLAYERS 4 //...
Forum: Suggestions / Requests 10-07-2012, 18:44
Replies: 15
Views: 3,310
Posted By Liverwiz
Re: [Request] Plugin who gives some bonuses

Do you want to be able to set a minimum number of cts/server players?

-I'm writing the plugin now-
Forum: Unapproved/Old Plugins 10-07-2012, 15:02
Replies: 7
Views: 3,920
Posted By Liverwiz
Re: Golden/Silver Player

i like it....copyright infringement. b&



ever heard of [php] tags? no? try them.
This is not here to help you fix code, this is here to POST your code. Don't post code if you can't support it....
Forum: Unapproved/Old Plugins 10-07-2012, 14:46
Replies: 10
Views: 3,620
Posted By Liverwiz
Re: Solo Gunner Mode

HOLY SHIT! He wrote a VIP mod.

SO installing this so i don't have to keep playing as_oilrig

P.S. Your code (if not your description also) should include credit to Connor McLeod for his...
Forum: Scripting Help 10-07-2012, 14:43
Replies: 11
Views: 2,258
Posted By Liverwiz
Re: random option to menu

Either way....this is HELP. We don't do shit FOR you. Quit being lazy and do something for yourself or get another hobby.

Request was made for this kind of cancer.
Showing results 1 to 25 of 500

 
Forum Jump

All times are GMT -4. The time now is 01:56.


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