My Pause dont work........ why?


(_NeT_WalBanger) #1

Ok i got a pause boiund to a key and it kind of works good…
It pauses the game once then Un pauses and then never works again Why???

[i]// Pausing Script

set pause1 “pause; vsay sorry ^0~~~~^oMatch Paused, ^0Sorry, Andy’s Crashed again!; set pause1 vstr unpause1”
set unpause1 “unpause; vsay cheer ^0~~~~^oMatch Unpaused!; set unpause1 vstr pause1”
bind “pause” “vstr pause1”[/i]

If i press it again it makes my ping go high and says this in the consol
“Cubf_InsertText overflowed”

If you can sort that, that would be great… Thanks

also if you get bored… This dosnt work proparly ( i think) can you see whats wrong??
[i]// Stats & Topshots Script

bind “p” “vstr statisticsall”
set statisticsall “vstr statistics”
set statistics “+topshots;+stats;set statisticsall vstr statistics2”
set statistics2 “-topshots;-stats;set statisticsall vstr statistics”[/i]

Thanks alot guys…


(Genesis) #2

is PAUSE an actual button?!
maybe if u do: bind p “vstr pause1”

if Pause is a button… then just ignore and read on!


(_NeT_WalBanger) #3

ya it is a button… and like i said it does work 1 time, so thats not the problem (i think)


(Sauron|EFG) #4

Looks like you’re changing the values of pause1 and unpause1… Rewrite your toggle.


(Sauron|EFG) #5

Something like this (untested):
set pause1 “pause; vsay sorry ^0~~~~^oMatch Paused, ^0Sorry, Andy’s Crashed again!; set pausetog vstr unpause1”
set unpause1 “unpause; vsay cheer ^0~~~~^oMatch Unpaused!; set pausetog vstr pause1”
set pausetog “vstr pause1”
bind “pause” “vstr pausetog”


(_NeT_WalBanger) #6

Ya that works…

Thanks alot


(Ragnar_40k) #7

I would use:

set stats_dn "+topshots; +stats"
set stats_up "-topshots; -stats"
bind p "+vstr stats_dn stats_up"

But FWIR displaying topshots and stats at the same time can make ET crash (ETPro fixed it (somehow) - it prevents you from showing both stats at the same time).