Raised This Month: $ Target: $400
 0% 

Point System 1.6.2 || [14/10/2008]


Post New Thread Reply   
 
Thread Tools Display Modes
ss2miraitrunks
Senior Member
Join Date: Dec 2005
Old 07-26-2008 , 21:08   Re: Point System 1.4.7 || [6/22/2008]
Reply With Quote #291

Quote:
- votemap
- hp boost
- invisiblity
- mole // Kind of implanted (chameleon)
- flashbang immunity
- tsay, csay
- extra armor
- auto 16k
- vip model
- doublejump
- turn FF on/off
- weapons do more damage
- one hit knife kills
- ability to turn on off custom mods if you have some on the server (weapons arena, capture the flag, redrover, jailbreak, etc.) make a CVAR for this.
- unlimited ammo (never gotta reload either)
- hold an extra HE nade
- extra life
- receive semi clip
Please most of them in 1.5
i know some are kind of impossible/dumb.
i don't care if you dont implement semi clip, turn on off custom mods, turn on off friendly fire, and tsay/csay.

but please, for the next version add the rest.

though of a new one.

- weapon knockback (get knockedback/jump when someone shoots you)
__________________


ss2miraitrunks is offline
chibi-sun123
Junior Member
Join Date: Jul 2008
Old 07-27-2008 , 03:30   Re: Point System 1.4.7 || [6/22/2008]
Reply With Quote #292

OMG pls help me i have uploaded models
Code:
/models/player/bendert/bendert.mdl
and
/models/player/halo/halo.mdl
and here my models_ct.ini
Code:
; Point System 1.4.7 || Model Database CT || Created by [A]tomen
; Example : "models/player/<modelname>/<modelname>.mdl" "My-Model"

"models/player/halo/halo.mdl" "Halo-Model"
models_t.ini

Code:
; Point System 1.4.7 || Model Database T || Created by [A]tomen
; Example : "models/player/<modelname>/<modelname>.mdl" "My-Model"

"models/player/bendert/bendert.mdl" "BenderT-Model"
the both models_x are locatet in addons\amxmodx\configs\ps

and when i then restart server i dont must download models -.- hamsandwich is activatet ... the server dont activate the models ... pls help me

Last edited by chibi-sun123; 07-27-2008 at 03:32.
chibi-sun123 is offline
diviqt
Senior Member
Join Date: Jul 2007
Location: Bulgaria
Old 07-27-2008 , 06:19   Re: Point System 1.4.7 || [6/22/2008]
Reply With Quote #293

Quote:
Originally Posted by chibi-sun123 View Post
OMG pls help me i have uploaded models
Code:
/models/player/bendert/bendert.mdl
and
/models/player/halo/halo.mdl
and here my models_ct.ini
Code:
; Point System 1.4.7 || Model Database CT || Created by [A]tomen
; Example : "models/player/<modelname>/<modelname>.mdl" "My-Model"

"models/player/halo/halo.mdl" "Halo-Model"
models_t.ini

Code:
; Point System 1.4.7 || Model Database T || Created by [A]tomen
; Example : "models/player/<modelname>/<modelname>.mdl" "My-Model"

"models/player/bendert/bendert.mdl" "BenderT-Model"
the both models_x are locatet in addons\amxmodx\configs\ps

and when i then restart server i dont must download models -.- hamsandwich is activatet ... the server dont activate the models ... pls help me
If its your server why do you want to download the models ... you already have them ...
diviqt is offline
Send a message via ICQ to diviqt Send a message via Skype™ to diviqt
atomen
Veteran Member
Join Date: Oct 2006
Location: Stockholm, Sweden
Old 07-27-2008 , 06:30   Re: Point System 1.4.7 || [6/22/2008]
Reply With Quote #294

Quote:
Originally Posted by ss2miraitrunks View Post
Please most of them in 1.5
i know some are kind of impossible/dumb.
i don't care if you dont implement semi clip, turn on off custom mods, turn on off friendly fire, and tsay/csay.

but please, for the next version add the rest.

though of a new one.

- weapon knockback (get knockedback/jump when someone shoots you)
Well, 1 great news is that I'll probably add Reserved slots.
You can buy it for 1 week.

And about the other stuff, when I'm already rewriting the system I might
be able to add 1 or 2 stuff into it.

And 1 question to everyone :


Should I fix so you get the double jump immediately or on next round?
__________________
atomen is offline
Send a message via MSN to atomen
chibi-sun123
Junior Member
Join Date: Jul 2008
Old 07-27-2008 , 06:31   Re: Point System 1.4.7 || [6/22/2008]
Reply With Quote #295

no the prob is when i will give me a model the menu say sory theres no model aviable or so ... that means the server dont has models activatet or so...
chibi-sun123 is offline
krededk99
Senior Member
Join Date: Nov 2007
Old 07-27-2008 , 07:15   Re: Point System 1.4.7 || [6/22/2008]
Reply With Quote #296

No its not the health checker.

I removed all the code regarding healthcheck i could find, recompiled, and its still the same.

Code:
#define HEALTH_TIME 1.0
 
 new g_mapsize = sizeof g_health_maps;
 for(new i; i < g_mapsize; i++)
 {
  if(containi(mapname, g_health_maps[i]) != -1)
  {
   log_ps("MapName: %s || Health-Map: %s || I: %d", mapname, g_health_maps[i], i);
   formatex(map, 23, "%s", g_health_maps[i]);
   g_hp_map = true;
  }
 }
 
if(g_hp_map)
   set_task(HEALTH_TIME, "check_health", id + TASK_ID);
 
public check_health(taskid)
{
 new id = taskid - TASK_ID;
 static string[24];
 formatex(string, 23, "%s", map);
 replace(string, 23, "hp", "");
 new Float:health = str_to_float(string);
 log_ps("Health: %f || String : ^"%s^"", health, string);
 if(pev(id, pev_health) != health)
  set_pev(id, pev_health, health);
 client_print(id, print_chat, "Health Set!");
}
Is what i removed. Im noob at this, but i think it got it all, and it worked and diddnt check for health

Atomen:

I was wondering, could you re-release an ealier version, perhaps 1.4.5? The model bug was fixed in that version, we could check it that way.

Last edited by krededk99; 07-27-2008 at 07:19.
krededk99 is offline
chibi-sun123
Junior Member
Join Date: Jul 2008
Old 07-27-2008 , 07:56   Re: Point System 1.4.7 || [6/22/2008]
Reply With Quote #297

the debug mode says that to me

Code:
L 07/27/2008 - 13:41:08: [AMXX] Displaying debug trace (plugin "point_system.amxx")
L 07/27/2008 - 13:41:08: [AMXX] Run time error 4: index out of bounds 
L 07/27/2008 - 13:41:08: [AMXX]    [0] file.inl::load_models_t (line 602)
L 07/27/2008 - 13:41:08: [AMXX]    [1] cpm.inl::plugin_precache (line 39)
L 07/27/2008 - 13:41:10: Start of error session.
can anyone help me pls
chibi-sun123 is offline
diviqt
Senior Member
Join Date: Jul 2007
Location: Bulgaria
Old 07-27-2008 , 08:10   Re: Point System 1.4.7 || [6/22/2008]
Reply With Quote #298

Quote:
Originally Posted by chibi-sun123 View Post
the debug mode says that to me

Code:
L 07/27/2008 - 13:41:08: [AMXX] Displaying debug trace (plugin "point_system.amxx")
L 07/27/2008 - 13:41:08: [AMXX] Run time error 4: index out of bounds 
L 07/27/2008 - 13:41:08: [AMXX]    [0] file.inl::load_models_t (line 602)
L 07/27/2008 - 13:41:08: [AMXX]    [1] cpm.inl::plugin_precache (line 39)
L 07/27/2008 - 13:41:10: Start of error session.
can anyone help me pls
Check your files and folders names you might have a mistake ...
diviqt is offline
Send a message via ICQ to diviqt Send a message via Skype™ to diviqt
SilverFlame
Member
Join Date: May 2008
Old 07-27-2008 , 08:48   Re: Point System 1.4.4 || [6/18/2008]
Reply With Quote #299

[quote=atomen;656762]You don't have file access. Nothing I can do about it.Weird.

Anything i can do about it? ;)
SilverFlame is offline
chibi-sun123
Junior Member
Join Date: Jul 2008
Old 07-27-2008 , 09:03   Re: Point System 1.4.7 || [6/22/2008]
Reply With Quote #300

i have checked all 3 times and dont work !!! pls help
chibi-sun123 is offline
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 19:02.


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