Raised This Month: $32 Target: $400
 8% 

Showing results 1 to 25 of 25
Search took 0.00 seconds.
Search: Posts Made By: desire worker
Forum: VSH / Freak Fortress 04-28-2019, 11:24
Replies: 10
Views: 14,385
Posted By desire worker
Re: (TF2) Source Engine SMD Rigging Tutorial (FULL)

Thank you for nice tutorial.

But how to combining multiple texture maps into one?
Forum: Scripting 12-15-2018, 12:20
Replies: 5
Views: 1,139
Posted By desire worker
Re: [L4D2] making custom chainsaw mode but not going well

I have completed the entire project.

but think better off discard it.

I was trying to override player velocity using 4th argument of TeleportEntity function.

TeleportEntity(entity,...
Forum: Scripting 12-15-2018, 12:01
Replies: 3
Views: 897
Posted By desire worker
Re: [L4D2] my global value is never changed

exact value was 102498 which was declared on above. but never mind, this old version is not valid.

the project has been end
Forum: Scripting 12-15-2018, 01:17
Replies: 3
Views: 897
Posted By desire worker
[L4D2] my global value is never changed

I defined global value which name is CurrentV[Maxplayer+1];

and modified its value in some functions in code.

but my code didn`t work well, so I tracked CurretV[c] value.

and it only display...
Forum: Scripting 12-14-2018, 20:24
Replies: 4
Views: 2,736
Posted By desire worker
Re: TeleportEntity function?

Ok, It was indicating properties after teleport, now I got it thanks you guys
Forum: Scripting 12-14-2018, 09:57
Replies: 7
Views: 1,519
Posted By desire worker
Re: [L4D2] How to deliver extra arguments for callback function in HookConVarChange f

oh that was`t handle... that`s why my convarchange function didn`t work.

thank you for your kind answer and code.
Forum: Scripting 12-14-2018, 09:55
Replies: 4
Views: 2,736
Posted By desire worker
TeleportEntity function?

I saw the Wiki first but didn`t understand well. my code is working crazy now due to this function.

--------------------------------------------------------------
Syntax:
native...
Forum: Scripting 12-13-2018, 20:06
Replies: 7
Views: 1,519
Posted By desire worker
Re: [L4D2] How to deliver extra arguments for callback function in HookConVarChange f

like below?

public void SpeedUpdater(ConVar convar, char[] oldValue, char[] newValue, client)
{
new client
for(client=1, client<GETMAXCLIENT(); client++)
{
...
Forum: Scripting 12-13-2018, 10:11
Replies: 7
Views: 1,757
Posted By desire worker
Re: [L4D2] Health Glows

most of your errors says "undefined symbol".

that means you did not defined specific values properly.

for example, let me bring your _HealthGlow_OnPluginEnd() function

public...
Forum: Scripting 12-13-2018, 10:00
Replies: 7
Views: 1,519
Posted By desire worker
[L4D2] How to deliver extra arguments for callback function in HookConVarChange func?

#pragma semicolon 1
#include <sourcemod>
#include <sdktools>
#include <sdktools_functions>
#include <sdkhooks>

new CurrentV[MAXPLAYERS+1];

public OnPluginStart()
{
Forum: Scripting 12-12-2018, 18:23
Replies: 5
Views: 1,139
Posted By desire worker
Re: [L4D2] making custom chainsaw mode but not going well

oh, I see. but seems like not working. setted m_flLaggedMovementValue 200 but the ingame character movement ain`t changed super fast.
Forum: Scripting 12-12-2018, 07:16
Replies: 22
Views: 4,704
Posted By desire worker
Re: [L4D2] How to change chainsaw fuel max capacity?

oh I see. thank you for your kind answers
Forum: Scripting 12-12-2018, 07:15
Replies: 22
Views: 4,704
Posted By desire worker
Re: [L4D2] How to change chainsaw fuel max capacity?

I have tested in game

by putting

sv_cheats 1
sm_cvar ammo_chainsaw_max = 444

to console but nothing happend.

tried again but max capacity didn`t changed
Forum: Scripting 12-12-2018, 06:46
Replies: 22
Views: 4,704
Posted By desire worker
Re: [L4D2] How to change chainsaw fuel max capacity?

Oh It was mean how to use that text files in game.

by the way, thank you for your dumping files

does that txt need to be executed in in game console?

like

sv_cheats 1
sm_cvar...
Forum: Scripting 12-12-2018, 06:19
Replies: 22
Views: 4,704
Posted By desire worker
Re: [L4D2] How to change chainsaw fuel max capacity?

? it`s quite different form sourcemod plugins, it`s sounds like very noob(In real, I`m noob) How to dump that files?
Forum: Scripting 12-11-2018, 19:21
Replies: 5
Views: 1,139
Posted By desire worker
Re: [L4D2] making custom chainsaw mode but not going well

had set player speed 200(default is 1) but not working. maybe using teleportentity is desirable?
Forum: Scripting 12-11-2018, 11:04
Replies: 5
Views: 1,139
Posted By desire worker
[L4D2] making custom chainsaw mode but not going well

From last weekend, I`m working on my first plugin project.

Here is my aims.


All AIs must be kicked in the starting of the game(ok))
In beginning, survivors get chainsaw for each(ok)
can...
Forum: Scripting 12-11-2018, 09:17
Replies: 3
Views: 1,446
Posted By desire worker
Re: [L4D2] Is there any way to get continuous or simultaneous keyboard input?

wow thank you for your prompt answer sir. I`ll try it right away
Forum: Scripting 12-11-2018, 08:14
Replies: 3
Views: 1,446
Posted By desire worker
[L4D2] Is there any way to get continuous or simultaneous keyboard input?

like

pressing IN_ATTACK button + IN_JUMP button

is there any way to implement get more than two inputs in same time?


public Action:OnPlayerRunCmd(client, &buttons)
{
if(buttons &...
Forum: Scripting 12-11-2018, 08:06
Replies: 3
Views: 2,220
Posted By desire worker
Re: [L4D2] How to implement starting event?

yeah you`re right.

but for one time event. OnMapStart() is better off than dat. thank you
Forum: Scripting 12-11-2018, 06:47
Replies: 22
Views: 4,704
Posted By desire worker
Re: How to change chainsaw fuel max capacity?

Oh sorry was about L4D2... I`l l change thread title ASAP
Forum: Scripting 12-11-2018, 04:55
Replies: 22
Views: 4,704
Posted By desire worker
[L4D2] How to change chainsaw fuel max capacity?

getting entityprop only brings its current property data

don`t know how to change max value
Forum: Scripting 12-10-2018, 01:29
Replies: 0
Views: 1,067
Posted By desire worker
[L4D2] need help for custom plugin

How to get two button inputs

like IN_ATTACK + IN_CROUCH
Forum: Scripting 12-09-2018, 10:27
Replies: 3
Views: 2,220
Posted By desire worker
[L4D2] How to implement starting event?

Hi, I am noob in here and currently making custom plugin.

but don`t know how to implement starting event.

for example

suppose that I wanna get Axe in game starting(I know there is the mod...
Forum: Scripting 12-09-2018, 07:21
Replies: 2
Views: 1,010
Posted By desire worker
How to kill survivors bots when they have spawned?

Greetings guys I am noob in here.

it looks like c API programming but somewhat different from that I have learned in web.

I`m currently working on making custom plugin for left4dead2

and...
Showing results 1 to 25 of 25

 
Forum Jump

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


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