Jump to content
  • 0
Sign in to follow this  
glemor123

gm bypass

Question

prontera,1,1,1	script	NoChatVendPront	-1,{OnWhisperGlobal:if (getgroupid()<90){OnInit:setcell "Hallow01",91,113,121,82,cell_nochat,1;setcell "Hallow01",91,113,121,82,cell_novending,1;setcell "Hallow01",99,61,112,49,cell_nochat,1;setcell "Hallow01",99,61,112,49,cell_novending,1;end;}end;} 

what to do so that gm level greater than level 90 can still create a chatroom

Share this post


Link to post
Share on other sites

3 answers to this question

Recommended Posts

  • 0

You can't do it via current scripting capabilities.

 

Best approach you can do via scripting is MANUALLY disabling the protection either for some seconds then it gets reapplied or until when you manually reapply it.

 

P.S.: That OnWhisperGlobal label you've added is useless, I'd remove it along with its content and its respective end and curly.

Share this post


Link to post
Share on other sites
  • 0

You can't do it via current scripting capabilities.

 

Best approach you can do via scripting is MANUALLY disabling the protection either for some seconds then it gets reapplied or until when you manually reapply it.

 

P.S.: That OnWhisperGlobal label you've added is useless, I'd remove it along with its content and its respective end and curly.

but how?

Share this post


Link to post
Share on other sites
  • 0

@@glemor123

 

-	script	NoChatVendPront	-1,{OnInit:	setcell "Hallow01",91,113,121,82,cell_nochat,1;	setcell "Hallow01",91,113,121,82,cell_novending,1;	setcell "Hallow01",99,61,112,49,cell_nochat,1;	setcell "Hallow01",99,61,112,49,cell_novending,1;	end;OnWhisperGlobal:	if (getgroupid() >= 90){	setcell "Hallow01",91,113,121,82,cell_nochat,0;	setcell "Hallow01",91,113,121,82,cell_novending,0;	setcell "Hallow01",99,61,112,49,cell_nochat,0;	setcell "Hallow01",99,61,112,49,cell_novending,0;	dispbottom "Chat and vending protection disabled. Will be reenabled automatically in 10 seconds.";	sleep2 10000;	setcell "Hallow01",91,113,121,82,cell_nochat,1;	setcell "Hallow01",91,113,121,82,cell_novending,1;	setcell "Hallow01",99,61,112,49,cell_nochat,1;	setcell "Hallow01",99,61,112,49,cell_novending,1;	dispbottom "Chat and vending protection reenabled.";	}}

 

Anyways, I suggest performing a change on src since in these 10 seconds (as an example) anybody can vend on chat on there.


 

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
Sign in to follow this  

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.