Ok I am going to explain something and I hope you understand the point I am trying to get across.
The person that wrote that script did so in a way that makes it extremely annoying so that people that need support with it (in this case you) need to contact him. The reason you cannot get support from him is because either he is not active or you did not pay him for the script because it was leaked. That does not mean it is impossible to fix but seriously... I do not feel like fixing that script and picking through the shit to locate some small errors.
With that said, I will point you in the right direction but from our past conversations it is clear to me that you have absolutely 0 knowledge on how to do this kind of thing so hopefully someone else will jump in and help you a bit.
In the script there is a creature event to prevent the player from changing their outfit. I have bolded some storage values that are used to determine if the player is in the event and unable to change the outfit. The problem is likely that one of those storages isn't being added somewhere in the script but fk me if I am going to sit and pick through that shit.
Edit: sorry I tried to put it in code tags but apparently it doesn't let me bold text inside there so I put it in a quote, but now the tabbing isn't working...
function onOutfit(cid, old, current)
if(getGlobalStorageValue(t.a) == 1) then
if getPlayerGroupId(cid) > 3 then
return true
end
if getPlayerStorageValue(cid, t.h) == 0 then
if getPlayerStorageValue(cid, t.f) > -1 then
doPlayerSendCancel(cid, "You cannot change your outfit during the event.")
return false
end
end
end
return true
end
As for the scores...
storage t.v is the score limit
storage t.l is what it thinks the storage is for red team score
storage t.u is what it thinks the storage is for the blue team score
It is my guess that either when a point is scored it is added to the wrong storage value or what it "thinks" is the storage for red/blue is actually backwards.
Hopefully this is a good start for anyone that feels like sorting this out. I would but I am just way to lazy to deal with it right now... When I asked for the script/information I was not aware this was the script you were talking about otherwise I would have told you right away I'm not interested in doing it.... Sorry
