Raised This Month: $12 Target: $400
 3% 

Showing results 1 to 25 of 85
Search took 0.03 seconds.
Search: Posts Made By: Gasior
Forum: Scripting Help 02-09-2017, 16:31
Replies: 5
Views: 981
Posted By Gasior
Re: How to save easier in nvault?

Thanks Bugsy, that's making my life so much easier.
Forum: Scripting Help 02-09-2017, 16:30
Replies: 5
Views: 977
Posted By Gasior
Re: Menu with different options if conditions are met

Brilliant! That's what I was looking for. Thanks!
Forum: Scripting Help 02-09-2017, 06:07
Replies: 5
Views: 981
Posted By Gasior
Re: How to save easier in nvault?

How can I do that? I know it can be shortened but could you show me how to do it?
Forum: Scripting Help 02-09-2017, 05:32
Replies: 5
Views: 981
Posted By Gasior
How to save easier in nvault?

Hi guys,

Is there any easier way to save the below?

public SaveData(id)
{
new szKey[ 40 ] , szData[ 3 ];
new sBurner[ 40 ] , zBurner[ 3 ];
new sCarbon[ 40 ], zCarbon[ 3 ];
...
Forum: Scripting Help 02-09-2017, 05:24
Replies: 5
Views: 977
Posted By Gasior
Re: Menu with different options if conditions are met

That's brilliant, do you also happen to know if there is a chance to show the option in the menu but don't let the people use it unless they met this criteria? Otherwise the menu is blank and people...
Forum: Scripting Help 02-08-2017, 14:46
Replies: 5
Views: 977
Posted By Gasior
Re: Menu with different options if conditions are met

I have realised that
if(Burner1[id] > 0){
menu_additem(g_Menu, "\wBurner", "", 0 );
}
else{
menu_additem(g_Menu, "\wBurner", "", ADMIN_IMMUNITY );
}
Might be the solution but I'm sure...
Forum: Scripting Help 02-08-2017, 14:39
Replies: 5
Views: 977
Posted By Gasior
Menu with different options if conditions are met

Hi Guys,

So just to explain, what I am trying to do is have a menu of weapons with different skins available for players if they have purchased it.

Problem I have is that if I select Carbon...
Forum: Scripting Help 01-27-2017, 07:22
Replies: 2
Views: 932
Posted By Gasior
Re: Nvault saving more than 10 items.

Increased to 4 and works, hah. What would I do without alliedmods :) .
Forum: Scripting Help 01-26-2017, 21:33
Replies: 2
Views: 932
Posted By Gasior
Nvault saving more than 10 items.

Hi there,

I have plugin in which you can pick your skin for your knife and it saves it in nvault.

So I go to the menu pick number 9 (case 10 menu_handler) and proceed to save data in nvault it...
Forum: Scripting Help 01-15-2017, 19:19
Replies: 2
Views: 788
Posted By Gasior
Re: How to delete numbers in the menu?

Aaaahh. So simple. Thanks
Forum: Scripting Help 01-15-2017, 18:41
Replies: 2
Views: 788
Posted By Gasior
How to delete numbers in the menu?

Hi there again!

Quick question when I make a menu, in front of the options there are numbers. How do I get rid of them? I saw that on couple of servers and it looks way much better for my plugin....
Forum: Scripting Help 01-11-2017, 21:59
Replies: 10
Views: 3,743
Posted By Gasior
Re: How to change skin of weapon?

Your above plugin, does not not precached models, but it is very interesting concept to look at.

Craxor, that also will not and does not work.
Forum: Scripting Help 01-11-2017, 00:36
Replies: 10
Views: 3,743
Posted By Gasior
Re: How to change skin of weapon?

So imagine you join my server, which you are welcome to!

You have a menu with all the weapons. You can pick any weapon and set any model available for any weapon you want. You set Galaxy for...
Forum: Scripting Help 01-10-2017, 23:25
Replies: 10
Views: 3,743
Posted By Gasior
Re: How to change skin of weapon?

My point is to be able to change the model of the AK47 or any other weapon, so that when I pick it up it presents to this model.

So for instance I would be able to pick all the models of weapons...
Forum: Scripting Help 01-10-2017, 22:45
Replies: 10
Views: 3,743
Posted By Gasior
Re: How to change skin of weapon?

Have tried that, that changes all your skins then ;/ .

public SetKarabin(id , Karabin:ak47)
{
new Karabin:iModelIndex = NoKarabinMSet;

if ( get_user_weapon( id ) == CSW_AK47 ){
...
Forum: Scripting Help 01-10-2017, 22:18
Replies: 10
Views: 3,743
Posted By Gasior
How to change skin of weapon?

Hi people,

I have a plugin which allows you to change the skin of your weapon but... you can only do it if you hold the weapon in your hand. Now how do I change it into being able to change it...
Forum: Scripting Help 01-03-2017, 03:42
Replies: 4
Views: 997
Posted By Gasior
Re: Run time error 10: native error (native "cs_reset_user_model")

Actually I have asked if user is alive and problem seems to disappeared.

public resetModel( id )
{
if(!is_user_alive(id))
return PLUGIN_HANDLED;
else
{

new...
Forum: Scripting Help 01-02-2017, 12:19
Replies: 4
Views: 997
Posted By Gasior
Run time error 10: native error (native "cs_reset_user_model")

Hi guys,

L 01/02/2017 - 16:56:44: [CSTRIKE] Invalid player 8
L 01/02/2017 - 16:56:44: [AMXX] Displaying debug trace (plugin "modelemenu.amxx")
L 01/02/2017 - 16:56:44: [AMXX] Run time error 10:...
Forum: Scripting Help 12-30-2016, 02:41
Replies: 41
Views: 8,033
Posted By Gasior
Re: How to save in nvault?

I am sorry for the spam I am just a stupid bastard.

public resetModel( id )
{

new szAuthID[33];
get_user_authid(id,szAuthID,32);

if(equali(szAuthID,"STEAM_X:X")){...
Forum: Scripting Help 12-30-2016, 02:28
Replies: 41
Views: 8,033
Posted By Gasior
Re: How to save in nvault?

Okay, I handled it :D .

What I did I changed this:
public client_authorized( id )
{
get_user_authid( id , g_szAuthID[ id ] , charsmax( g_szAuthID[] ) );

g_Model[ id ] =...
Forum: Scripting Help 12-28-2016, 12:26
Replies: 41
Views: 8,033
Posted By Gasior
Re: How to save in nvault?

Hi again!

Everything is working almost just fine, well except this



Also, I have a random VIP plugin, which means that a person will randomly get VIP and be able to choose model and knife...
Forum: Scripting Help 11-27-2016, 21:48
Replies: 41
Views: 8,033
Posted By Gasior
Re: How to save in nvault?

It's me, it's me your G A S I O R.

So I have two plugins one the one you helped me with and second one is a knife menu, which is pretty much the same just knife menu has 4 skins for all players...
Forum: Scripting Help 11-26-2016, 18:57
Replies: 41
Views: 8,033
Posted By Gasior
Re: How to save in nvault?

Cool! Thank you once again!
Forum: Scripting Help 11-26-2016, 18:46
Replies: 41
Views: 8,033
Posted By Gasior
Re: How to save in nvault?

However! I have noticed something so:

I picked a model, it stays there cool.

I reconnect it is still there straight away. I reconnect one more time, model is gone. It loads in after 10-15 secs....
Forum: Scripting Help 11-26-2016, 18:34
Replies: 41
Views: 8,033
Posted By Gasior
Re: How to save in nvault?

L 11/27/2016 - 00:32:36: [modelemenu.amxx] SETTING MODEL INDEX=0 TEAM INDEX=1
L 11/27/2016 - 00:32:38: [modelemenu.amxx] SETTING MODEL INDEX=3 TEAM INDEX=1
L 11/27/2016 - 00:32:40:...
Showing results 1 to 25 of 85

 
Forum Jump

All times are GMT -4. The time now is 17:52.


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