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

ProKreedz 2.31


Post New Thread Reply   
 
Thread Tools Display Modes
VaMpIrr
New Member
Join Date: Oct 2012
Location: Kruševac,Serbia
Old 10-19-2012 , 01:07   Re: ProKreedz 2.31
Reply With Quote #901

yea i use SQL version bu evrething is set fine when a start plugins whit "amxx unpause" evrething work fine end when map change is the same paused

i fix the probles is whit remote sql my webhost block ip of cs server now evreting work nice

Last edited by VaMpIrr; 10-20-2012 at 13:03.
VaMpIrr is offline
Send a message via MSN to VaMpIrr Send a message via Yahoo to VaMpIrr
Cheezpuff
BANNED
Join Date: Oct 2012
Location: City of the Dead
Old 11-02-2012 , 21:04   Re: ProKreedz 2.31
Reply With Quote #902

look at that


that based on pro15 - top
but that show 10 tops

and how can i add more things to that screen
somone can help?
Cheezpuff is offline
Send a message via Skype™ to Cheezpuff
kp3t3h
Senior Member
Join Date: Feb 2011
Old 11-03-2012 , 06:17   Re: ProKreedz 2.31
Reply With Quote #903

Quote:
Originally Posted by Cheezpuff View Post
look at that


that based on pro15 - top
but that show 10 tops

and how can i add more things to that screen
somone can help?
find all
PHP Code:
for (new 010i++) 
change to -->
PHP Code:
for (new i<15i++) 
__________________
need help with the following
no.1, no.2, no.3, no.4 no.5

Last edited by kp3t3h; 11-03-2012 at 06:17.
kp3t3h is offline
Cheezpuff
BANNED
Join Date: Oct 2012
Location: City of the Dead
Old 11-03-2012 , 11:04   Re: ProKreedz 2.31
Reply With Quote #904

Quote:
Originally Posted by kp3t3h View Post
find all
PHP Code:
for (new 010i++) 
change to -->
PHP Code:
for (new i<15i++) 
I will check it, and how can I change pro 15 screen to better?


edit new problem:

Last edited by Cheezpuff; 11-04-2012 at 12:22.
Cheezpuff is offline
Send a message via Skype™ to Cheezpuff
kp3t3h
Senior Member
Join Date: Feb 2011
Old 11-04-2012 , 14:08   Re: ProKreedz 2.31
Reply With Quote #905

Quote:
Originally Posted by Cheezpuff View Post
I will check it, and how can I change pro 15 screen to better?


edit new problem:
Spoiler
its 10 default because there are problems with motd, it cant show all 15


@ nuclear
i have a suggestion, can you make once paused (through menu) to change checkpoint and gocheck buttons to: NoClip, and '/savepos' commands, since there is no point in having CP/TP if you cant use them while paused.
oh and 1 more thing can you swap top15 with pause so that pause will be third in the list (this way it will be closer to WASD keys and easier to hit.
__________________
need help with the following
no.1, no.2, no.3, no.4 no.5
kp3t3h is offline
NucL3ra
Veteran Member
Join Date: Sep 2008
Location: Bucuresti , Romania
Old 11-05-2012 , 04:22   Re: ProKreedz 2.31
Reply With Quote #906

Well, the thing is, on the new version I changed the menu. But i stopped working on it because I wanted to support melee cups. School started and I have almost no interest in doing it.

I uploaded it here, but remember it's not final version of 2.32 (it is final for the moment, but i will not release it like this) and some people said that the auto spawn has problems (i would've been amazed if it hadn't considering the way I did it -- to redo, it was just a fast idea).
Attached Files
File Type: sma Get Plugin or Get Source (prokreedz_2.32.sma - 537 views - 77.0 KB)
__________________
My nickname is nucLeaR, I just screwed up at registering and didn't want to change after that X_X.

Last edited by NucL3ra; 11-05-2012 at 04:22.
NucL3ra is offline
Send a message via Yahoo to NucL3ra
kp3t3h
Senior Member
Join Date: Feb 2011
Old 11-05-2012 , 04:43   Re: ProKreedz 2.31
Reply With Quote #907

i see you added a new submenu (jump menu), and a new button there (Stuck), but what the stuck does is the same as GoCheck so there is no point in having it there. and once again i suggest you put 'Pause' button on third position so its closer to WASD keys, start button to remain as no.4 .
__________________
need help with the following
no.1, no.2, no.3, no.4 no.5
kp3t3h is offline
NucL3ra
Veteran Member
Join Date: Sep 2008
Location: Bucuresti , Romania
Old 11-05-2012 , 04:48   Re: ProKreedz 2.31
Reply With Quote #908

It's an idea.

It's an easy modify:

Go to

PHP Code:
public JumpMenu (id)
{
...
 
menu_additemmenu"Stuck^n""3")
    
menu_additemmenu"Start""4")
    
menu_additemmenumsgpause"5" )

to
PHP Code:
public JumpMenu (id)
{
...
    
formatex(msgpause63"Pause - %s^n"IsPaused[id] ? "\yON" "\rOFF")
...
    
menu_additemmenumsgpause"3" )
    
menu_additemmenu"Start""4")
    
menu_additemmenu"Stuck""5")

And

PHP Code:
        case :{
            
Stuck(id)
            
JumpMenu(id)
        }
        case 
3:{
            
goStart(id)
            
JumpMenu(id)
        }
        case 
4:{
            
Pause(id)
            
JumpMenu(id)
        } 
to
PHP Code:
        case 2:{
            
Pause(id)
            
JumpMenu(id)
        case 
3:{
            
goStart(id)
            
JumpMenu(id)
        }
        case 
:{
            
Stuck(id)
            
JumpMenu(id)
        }

__________________
My nickname is nucLeaR, I just screwed up at registering and didn't want to change after that X_X.

Last edited by NucL3ra; 11-05-2012 at 04:54.
NucL3ra is offline
Send a message via Yahoo to NucL3ra
Cheezpuff
BANNED
Join Date: Oct 2012
Location: City of the Dead
Old 11-06-2012 , 17:34   Re: ProKreedz 2.31
Reply With Quote #909

Quote:
Originally Posted by NucL3ra View Post
Well, the thing is, on the new version I changed the menu. But i stopped working on it because I wanted to support melee cups. School started and I have almost no interest in doing it.

I uploaded it here, but remember it's not final version of 2.32 (it is final for the moment, but i will not release it like this) and some people said that the auto spawn has problems (i would've been amazed if it hadn't considering the way I did it -- to redo, it was just a fast idea).
what you mean 2.32?
and what new of menu dude?

I'm waiting for full version gl

Last edited by Cheezpuff; 11-06-2012 at 17:36.
Cheezpuff is offline
Send a message via Skype™ to Cheezpuff
TozABG
Member
Join Date: Aug 2010
Old 11-08-2012 , 18:25   Re: ProKreedz 2.31
Reply With Quote #910

How to change flag for a hook, my seetings is that only admins have hook, but i want make that and "only slots" have hook too.
TozABG 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 17:50.


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