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

Showing results 1 to 25 of 500
Search took 0.03 seconds.
Search: Posts Made By: avril-lavigne
Forum: General 01-14-2019, 06:21
Replies: 2
Views: 1,035
Posted By avril-lavigne
Re: PHP to obtain amxx cvar value on server

Done with GameQ

http://dl3.joxi.net/drive/2019/01/14/0011/0381/782717/17/2ed6c4be97.png
Forum: General 01-12-2019, 23:36
Replies: 2
Views: 1,035
Posted By avril-lavigne
PHP to obtain amxx cvar value on server

I need php to read cvar on server ( to check plugin installed or not ). google didn't help
Forum: Off-Topic 12-20-2018, 19:09
Replies: 2
Views: 932
Posted By avril-lavigne
Forum: Off-Topic 12-18-2018, 08:41
Replies: 2
Views: 932
Posted By avril-lavigne
How to generate amxx like message with C++ code

So I want to send amxx message like ShowMenu or VGUIMenu


I can hook anything on client ( 7690 build )


int ShowMenu(const char *pszName, int iSize, void *pbuf)
{
BEGIN_READ(pbuf,...
Forum: Scripting Help 08-27-2018, 21:06
Replies: 2
Views: 902
Posted By avril-lavigne
Re: cannot set c4 think time

thanks bro, for reminding me about supercede .
Forum: Scripting Help 08-24-2018, 20:35
Replies: 2
Views: 902
Posted By avril-lavigne
cannot set c4 think time

I have not been scripting since 2014 ... I`m trying to set c4 think time ( using custom model + blood )



public fw_grenade_think(ent)
{

new l_model[51]
entity_get_string(ent,...
Forum: General 03-06-2018, 02:48
Replies: 1
Views: 758
Posted By avril-lavigne
legal to run sv_cheats 1 server?

I want to run sv_cheats 1 server for fun . Just want to make sure it is legal or not. of course all cmds should be legal but.
Forum: Scripting 03-02-2018, 09:02
Replies: 3
Views: 925
Posted By avril-lavigne
Re: Need crash plugin xD

Omg so simple ????? fahahahahahaha thanks man
Forum: Scripting 03-02-2018, 08:45
Replies: 3
Views: 925
Posted By avril-lavigne
Need crash plugin xD

Im making srcds restart program on delphi
I want to test, how it can catch server with error "srcds stopped working"
and probably to send WM_QUIT message .
so can someone give me the code to...
Forum: Plugins 02-27-2018, 16:27
Replies: 23
Views: 22,999
Posted By avril-lavigne
Re: [ANY] Wallhack For Specs

https://github.com/bcserv/smlib

install then you can compile it

but it seems it doesn`t work, I have installed required texture and still nothing.
Forum: Scripting 02-26-2018, 13:59
Replies: 4
Views: 1,673
Posted By avril-lavigne
Re: how to display voiceicon

Haven`t heard about such strange rules. I don`t think it`s a crime. If it was so, fake bot ping or names were forbidden too.
Forum: Scripting 02-26-2018, 12:49
Replies: 4
Views: 1,673
Posted By avril-lavigne
how to display voiceicon

I`ve created a few .wav files for bots ent ( EmitSoundToAll )
also, I want to display voice icon to prank someone bot really speaks.
I`ll do an icon above bot`s head, but now I`m asking about...
Forum: Off-Topic 06-24-2017, 00:41
Replies: 1
Views: 732
Posted By avril-lavigne
Re: Steam API question

found

http://api.steampowered.com/ISteamApps/UpToDateCheck/v1?appid=730&version=13590&format=xml

solved
Forum: Off-Topic 06-23-2017, 22:18
Replies: 1
Views: 732
Posted By avril-lavigne
Steam API question

hi, does anyone know how to get csgo current version from steam webapi ( like those from console "version" ) ? cant find anything useful in wiki.
Forum: Plugins 01-25-2017, 00:26
Replies: 4
Views: 8,448
Posted By avril-lavigne
Re: [CSGO] Quake Mod: Offensive

I have complete port of quake3 but for cs 1.6 made by myself
with

dm
dm ffa
ctf
etc

custom maps/ all original q3 models
Forum: Scripting Help 11-18-2015, 17:40
Replies: 0
Views: 375
Posted By avril-lavigne
Texture type always returns CNotexture ..

I tried different methods. Viewcontents is shows sky / solid but I need to get wood / wall at least.
Doing like in wiki or "OT" plugin >>



new Float:virtualend[3],...
Forum: Scripting Help 05-14-2015, 19:17
Replies: 1
Views: 426
Posted By avril-lavigne
strange bug when creating entity

pl = create_entity("info_target")
set_pev(pl, pev_classname, player_class)
set_pev(pl,pev_origin,vSrc)
entity_set_model(pl,playermodel)
drop_to_floor(pl)


debug shows me classname...
Forum: Scripting Help 05-10-2015, 10:53
Replies: 3
Views: 740
Posted By avril-lavigne
Forum: Scripting Help 05-10-2015, 07:43
Replies: 3
Views: 740
Posted By avril-lavigne
strbreak? in parse ip from file

Im new to parsing files. I want to randomly choose Ip from list

new readdata[128]
new parsedip[33]

while(fgets(filepointer,readdata,127))
{
...
Forum: Scripting Help 05-07-2015, 15:07
Replies: 1
Views: 632
Posted By avril-lavigne
VelocityByaim with negative value

Im creating controllable entity. I set speed and angles ( vector to angle ) correctly
When I want to move it backwards , I put ent_speed[id] -= 25
entity moves back to me but acts like I have...
Forum: Scripting Help 04-30-2015, 08:30
Replies: 6
Views: 1,527
Posted By avril-lavigne
Re: fake voice ...

I mean like potti speaking in mic . would be so funny to hear
upload sound to server and somehow +voicerecord from bot entity
Forum: Scripting Help 04-28-2015, 11:44
Replies: 6
Views: 1,527
Posted By avril-lavigne
fake voice ...

I asked this question 2 years ago . is it possible to send fake +voicerecord from FL_FAKECLIENT or another way? I mean no emit_sound or client_cmd("spk %s", sound) . I want funny fake voice )
Forum: Scripting Help 12-09-2014, 22:39
Replies: 1
Views: 747
Posted By avril-lavigne
filesize not working?

new const myfile[] = "cached.wad"

public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
server_print("file %d", filesize(myfile))
}


output always 0
tried file_size, the same...
Forum: Scripting Help 11-23-2014, 18:24
Replies: 1
Views: 747
Posted By avril-lavigne
redirect voice to ent?

Is it possible to redirect human voice to certain entity? I mean:
1.I speak
2. My voice sounds from entity far away like opera/radio on cs_italy.
I want to make an entity speaking with my voice
Forum: Scripting Help 11-21-2014, 15:08
Replies: 6
Views: 1,374
Posted By avril-lavigne
Re: Grenade think 2 calls

I solved it to set he owner to 0 after loop




if(is_he(ent) && heowner > 0)
{
// than
Showing results 1 to 25 of 500

 
Forum Jump

All times are GMT -4. The time now is 04:20.


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