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

Showing results 1 to 24 of 24
Search took 0.00 seconds.
Search: Posts Made By: CreativeTR
Forum: Scripting Help 06-26-2017, 07:52
Replies: 4
Views: 1,021
Posted By CreativeTR
Read_arg integer

new max_level = 30;
public changeMaxLevel(id, level, cid) {
if (!cmd_access(id, level, cid, 1))
return PLUGIN_HANDLED

//.... How to get an integer from console...

client_print(id,...
Forum: Off-Topic 03-15-2017, 16:26
Replies: 4
Views: 1,364
Posted By CreativeTR
Re: CS - Small request.

I would like to help you. I added you in my skype
Forum: Off-Topic 03-15-2017, 16:01
Replies: 12
Views: 2,920
Posted By CreativeTR
Re: Is there malware in my system?

csrss.exe - i really dont know :/
dwm.exe - can be a service for window list (ALT+TAB)
LogonUI.exe (Windows Logon User Interface Host)
svchost.exe - windows services required for work (network...
Forum: General 03-15-2017, 15:57
Replies: 6
Views: 1,758
Posted By CreativeTR
Forum: General 03-15-2017, 15:49
Replies: 6
Views: 1,758
Posted By CreativeTR
Re: CS Plugin Builder - Simple [Semi-interface]

i am updating thread for details
Forum: General 03-15-2017, 15:44
Replies: 6
Views: 1,758
Posted By CreativeTR
CS Plugin Builder

If it's handy, I will develop it

*A more modern interface
*Simple usage
*Ready coding system
*Lots of library functions
-Definations
-Variables
-Cvar List
-Directly...
Forum: Code Snippets/Tutorials 03-15-2017, 12:07
Replies: 7
Views: 2,115
Posted By CreativeTR
Re: Some simple solutions

I'm not talking about client name. Client ID I'm talking about
Forum: Scripting Help 03-15-2017, 11:58
Replies: 7
Views: 5,484
Posted By CreativeTR
Re: Pawn tutorial ?

if you know any software language (etc. c#) or anything about functions and definations, you can learn quickly
Forum: Code Snippets/Tutorials 03-15-2017, 11:35
Replies: 7
Views: 2,115
Posted By CreativeTR
Re: Some simple solutions

It won't throw any warning. cs_get_user_team is already tagged as CsTeams. You should take a look at how tags work.

In some cases due to differences in definition tags, becomes an unreadable...
Forum: Code Snippets/Tutorials 03-14-2017, 16:04
Replies: 7
Views: 2,115
Posted By CreativeTR
Some simple solutions

They are all described with an example.

Correct Definition

if(cs_get_user_team(id) == CS_TEAM_T) //this may be error
if(cs_get_user_team(id) == CsTeams:CS_TEAM_T) //the best way to be sure

...
Forum: Scripting Help 03-14-2017, 15:46
Replies: 7
Views: 1,097
Posted By CreativeTR
Re: Edit my XP-System

No interest in the subject but you must change

#define MAX_PLAYERS 32
to
#define MAX_PLAYERS 33

because client starts counting 1 but server 0
Forum: Scripting Help 03-14-2017, 15:42
Replies: 5
Views: 1,097
Posted By CreativeTR
Re: Problem in zp5.0.8 Mod

If you are using a bot package, this may be the reason.
Forum: Scripting Help 03-14-2017, 15:31
Replies: 32
Views: 4,778
Posted By CreativeTR
Re: [HELP] Force grenade throw?

This will probably work for can't drop hegrenade.

#include <amxmodx>
#include <amxmisc>
#include <hamsandwich>

new g_itsGrenade[33]
public plugin_init() {
register_plugin(PLUGIN, VERSION,...
Forum: Scripting Help 03-14-2017, 15:15
Replies: 10
Views: 1,904
Posted By CreativeTR
Re: Max Hud Health

255 = 28 – 1 (0xFF)

Probably, CS included which in base via assembly.

eax, 0xFF - for health value (byte)

----

You make your own health bar and hide main bar
Forum: Scripting Help 03-14-2017, 12:28
Replies: 4
Views: 1,037
Posted By CreativeTR
Re: [HELP] Light on player

I said it's not glow.

it is like (a border on player, a light on player)

Actually, CT team can see T team but T team can't see CT team because of darkness

It's can be white night vision
Forum: Scripting Help 03-14-2017, 11:53
Replies: 4
Views: 1,037
Posted By CreativeTR
[HELP] Light on player

I want map to be dark but players' light must be normal

set_lights("c")

for example (photoshop) : http://prnt.sc/ejvin3

It looks glow in the photo but NOT

More like only light
Forum: Trash 03-14-2017, 11:43
Replies: 0
Views: 640
Posted By CreativeTR
[HELP] Light on player

//Wrong section
Forum: Scripting Help 03-12-2017, 14:53
Replies: 10
Views: 1,778
Posted By CreativeTR
Re: I need "for loop" algorithm

Thanks it was very simple :)
Forum: Scripting Help 03-12-2017, 13:40
Replies: 10
Views: 1,778
Posted By CreativeTR
Re: I need "for loop" algorithm

of course not

example:

for(new i = 1; i <= MAX_LEVEL; i++) {
if(currentExp >= (currentExp*i) && currentExp <= (currentExp*i) + (currentExp*i)) {
...
Forum: Scripting Help 03-12-2017, 13:16
Replies: 10
Views: 1,778
Posted By CreativeTR
I need "for loop" algorithm

#define ADD_EXP_PER_KILL 30
#define MAX_LEVEL 30

Operation:

Required experience for Level2: 30
Required experience for Level3: 90 (Previous level required exp + 30 x Previous Level)
Required...
Forum: Scripting Help 03-12-2017, 09:00
Replies: 8
Views: 1,224
Posted By CreativeTR
Re: Cash storage via nick

Thanks KliPPy, I fixed this.
Forum: Scripting Help 03-12-2017, 08:33
Replies: 8
Views: 1,224
Posted By CreativeTR
Re: Cash storage via nick

I want to save user's cash via their nick name
Forum: Scripting Help 03-12-2017, 08:31
Replies: 8
Views: 1,224
Posted By CreativeTR
Re: Cash storage via nick

But if i use save via client id method, when player disconnect from server and other player connect server he's client id same from who disconnected

(i am sorry for my bad english)
Forum: Scripting Help 03-12-2017, 08:09
Replies: 8
Views: 1,224
Posted By CreativeTR
Cash storage via nick

Example

new p_Cash[33]
public client_disconnect(id) {
new p_name[33]
get_user_name(id, p_name, 33)
p_Cash[p_name] = current_cash
}

Error: Error: Array must be indexed (variable...
Showing results 1 to 24 of 24

 
Forum Jump

All times are GMT -4. The time now is 00:59.


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