Raised This Month: $ Target: $400
 0% 

Showing results 1 to 25 of 40
Search took 0.00 seconds.
Search: Posts Made By: DHJ
Forum: Scripting 01-29-2013, 10:50
Replies: 1
Views: 711
Posted By DHJ
Sqlite3 utf-8

Hey guys

New on this forum, is there utf-8 support on sqlite3? Can't find anything about it.
Forum: Scripting 12-28-2012, 09:09
Replies: 5
Views: 1,467
Posted By DHJ
Re: MySQL API

Thanks guys will look into it then.


Es is getting kinda aids lately.
Forum: Scripting 12-27-2012, 19:40
Replies: 5
Views: 1,467
Posted By DHJ
MySQL API

Hey guys

I'm thinking about rewriting all my python scripts from ES to sourcePawn. The only problem is, that i use MySQL, and i've read that there is some major problem with it. E.g. at map...
Forum: Scripting 12-27-2012, 04:05
Replies: 6
Views: 2,987
Posted By DHJ
Re: [TF2] Mysql connect

^

how do you thread it properly?
Forum: Scripting 04-11-2012, 12:49
Replies: 2
Views: 1,248
Posted By DHJ
Remove buyzone + restrict weapons

How i can remove buyzone from one player, and restrict weapons for one player?

Right now there is no plugins that works who does that.

NOPE Userrestrict is bugged, read topic.
Forum: Plugins 04-11-2012, 12:34
Replies: 2,258
Views: 1,454,750
Posted By DHJ
Re: [CSS] Weapon Restrict (3.0 is here!)

Can you please do so you can restrict for one player? By steamid or userid?

Could be really nice :)
Forum: Plugins 04-11-2012, 11:33
Replies: 48
Views: 29,223
Posted By DHJ
Re: [CS:S] Weapon Limiter (or Restricter) by SteamID [v1.0]

Can you add a command for restricting players? So they get restrict instant?


I love you if you do :>
Forum: Plugin/Gameplay Ideas and Requests 04-22-2011, 16:20
Replies: 1
Views: 697
Posted By DHJ
set deaths

Hey i would like a simple script that can set deaths on players with a console command.


It's because im scripting in python, and it's not possible to set death with the m_ideaths in python.
...
Forum: Plugins 04-22-2011, 16:13
Replies: 63
Views: 138,692
Posted By DHJ
Re: [CS:S] Resetscore

Hello can you please add a console command for reset af players score, e.g. sm_resetplayerscore <#userid | Steamid | name> , and if u can and will a console command for reset all...
Forum: Scripting 04-08-2010, 08:03
Replies: 6
Views: 1,606
Posted By DHJ
Re: decals for one team only?

ok sorry.


I want a mod that can set decals in maps, but only CT can see the decals they are invisble for T :)
Forum: Scripting 04-08-2010, 06:52
Replies: 6
Views: 1,606
Posted By DHJ
Forum: Scripting 04-07-2010, 20:13
Replies: 6
Views: 1,606
Posted By DHJ
decals for one team only?

can it be done in anyway?
Forum: Coding MM:S Plugins & SM Extensions 02-23-2009, 03:13
Replies: 5
Views: 1,750
Posted By DHJ
Forum: Coding MM:S Plugins & SM Extensions 02-21-2009, 07:05
Replies: 5
Views: 1,750
Posted By DHJ
Re: crashing when i add something to downloadtable

still crashing the server, when i add it to levelinit ot server activate
Forum: Coding MM:S Plugins & SM Extensions 02-20-2009, 20:26
Replies: 5
Views: 1,750
Posted By DHJ
crashing when i add something to downloadtable

i use this to make my files downloadable for the clients

//Downloadable
bool AddDownload(const char *file)
{
INetworkStringTable *pDownloadablesTable =...
Forum: Off-Topic 02-17-2009, 14:18
Replies: 92
Views: 26,495
Posted By DHJ
Re: How are non-steam servers illegal?

ehh blizzad has closed alot of private servers down allreday :)
Forum: Coding MM:S Plugins & SM Extensions 02-08-2009, 20:35
Replies: 2
Views: 1,490
Posted By DHJ
Re: crash the server, can't find the error

here is the output from debug



1>LIBCMTD.lib(dbgheap.obj) : error LNK2005: __malloc_dbg already defined in memoverride.obj
1>LIBCMTD.lib(dbgheap.obj) : error LNK2005: __nh_malloc already...
Forum: Coding MM:S Plugins & SM Extensions 02-08-2009, 19:27
Replies: 2
Views: 1,490
Posted By DHJ
crash the server, can't find the error

hello again.

Im trying to make a knifeking plugin in c++, and it compile fine, when i knife someone, you can see the messages, and then the server crash, it says someting about ...
Forum: Coding MM:S Plugins & SM Extensions 02-07-2009, 08:59
Replies: 1
Views: 1,174
Posted By DHJ
Get client stuff

How to get client stuff like money, health and how to set client money, and give items

And how to send a message to a client like es_tell/es.tell in eventscripts. I know how to send a global...
Forum: Coding MM:S Plugins & SM Extensions 02-06-2009, 19:47
Replies: 6
Views: 1,933
Posted By DHJ
Re: divide with 0?

ye, well, but i want to avoid that problem with setting deaths to 1, if its 0, then you can calculate the ratio with no problems.
Forum: Coding MM:S Plugins & SM Extensions 02-06-2009, 19:08
Replies: 26
Views: 6,506
Posted By DHJ
Re: Some errors

it crash if deaths is 0

how can i avoid this from happin?, like set deaths to 1, if deaths is 0, then the ratio would be the number of kills
Forum: Coding MM:S Plugins & SM Extensions 02-06-2009, 17:56
Replies: 6
Views: 1,933
Posted By DHJ
divide with 0?

in python you can do this to avoid the "divide by 0" error/crash

format_ratio = float(event_var['es_userkills']) / {True:deaths, False:1}[bool(deaths)] how to fix this in c++? have try some...
Forum: Coding MM:S Plugins & SM Extensions 02-06-2009, 17:21
Replies: 26
Views: 6,506
Posted By DHJ
Re: Some errors

btw will this return in float?
float format_ratio = userkills / userdeaths;

userkills and userdeaths is int
Forum: Coding MM:S Plugins & SM Extensions 02-06-2009, 17:20
Replies: 26
Views: 6,506
Posted By DHJ
Re: Some errors

seems to work, with only include "cbase.h" :)

try it now, thx
Forum: Coding MM:S Plugins & SM Extensions 02-06-2009, 17:01
Replies: 26
Views: 6,506
Posted By DHJ
Re: Some errors

think it gaves me the same erros as before 1>.\serverplugin_empty.cpp(36) : error C2371: 'gameeventmanager' : redefinition; different basic types
1> ...
Showing results 1 to 25 of 40

 
Forum Jump

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


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