• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!
  • 2026 staff recruitment is open! Check it out and consider applying!

Rush event eroor!!

tanii

Empire-war.com
Joined
Jan 16, 2015
Messages
383
Solutions
1
Reaction score
12
Hello otlanders my rush event works fine but when players start event and they change outfit they team can kill u and the team can attak them!

so how i can solv this!

thank u
 
Last edited:
@Xagul bro my rush event works fine but when players start event and they change outfit they team can kill u and the team can attak them!

so how i can solv this!

thank u

with tags noone will help you becouse u tag 1 player only if someone know the problem he wont help someone like you u just tag who help u from the first to last... thats realy boring

next time try to dont use tags and i wont help you if u still tag.
 
with tags noone will help you becouse u tag 1 player only if someone know the problem he wont help someone like you u just tag who help u from the first to last... thats realy boring

next time try to dont use tags and i wont help you if u still tag.

Okey i am sorry bro help me now!
 
@BaKoZ
I told him to tag me yesterday so I could find the post easier because I had to leave.

@tanii
Either post the event script or tell me how I can determine if a player is inside the event. (storage, condition, xyz area, ect...)
 
The problem with your script is you're simply throwing players in without assigning them a storage value. Give players a storage value, and then make a script that doesn't allow you to attack players with x storage.
 
The problem with your script is you're simply throwing players in without assigning them a storage value. Give players a storage value, and then make a script that doesn't allow you to attack players with x storage.
can u make bro pls i no got idea how to make
 
@Xagul

Bro can u give me rush event works 100% and without any error i am searching from 2 weeks no body help here can u help me pls.
 
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 :(
 
Back
Top