Jump to content
  • 0

Looking for somthing to either FullStrip or unequip/disable weapons


chookyy

Question


  • Group:  Members
  • Topic Count:  3
  • Topics Per Day:  0.00
  • Content Count:  4
  • Reputation:   0
  • Joined:  06/28/13
  • Last Seen:  

Trying to make something for the event maps where once you enter you are either full stripped or you cant use weapons etc. My reason is that snipers obvious get a range advantage. Perhaps when they enter a warpportal that will apply the effect. Or via a map flag. OR maybe something that applies a Fullstrip on the ground in an area so then by walking toward the warp portal you are fullstripped.

 

Thanks in advance!

Link to comment
Share on other sites

9 answers to this question

Recommended Posts


  • Group:  Forum Moderator
  • Topic Count:  93
  • Topics Per Day:  0.02
  • Content Count:  10013
  • Reputation:   2346
  • Joined:  10/28/11
  • Last Seen:  

OnPCLoadMapEvent:
while( strcharinfo(3) == "mapname" ){
	unequip EQI_HAND_L;
	unequip EQI_HAND_R;
	sleep2 5000;
}
end;

FCP status can be bypass if they enter the map without wearing any equipment/weapons ...

 

this kind of request should be done through source mod .... 

  • Upvote 2
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  2
  • Topics Per Day:  0.00
  • Content Count:  23
  • Reputation:   0
  • Joined:  08/12/13
  • Last Seen:  

-	script	strip	-1,{

OnPCLoadMapEvent:

sc_start SC_STRIPSHIELD,1200000,5;
sc_start SC_STRIPWEAPON,1200000,5;
sc_start SC_STRIPARMOR,1200000,5;
sc_start SC_STRIPHELM,1200000,5;

}

map	mapflag	loadevent //maps here

 

Maybe something like this. 

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  3
  • Topics Per Day:  0.00
  • Content Count:  4
  • Reputation:   0
  • Joined:  06/28/13
  • Last Seen:  

Perfect guys thanks for the help i used 

 

OnPCLoadMapEvent:
while( strcharinfo(3) == "mapname" ){
    unequip EQI_HAND_L;
    unequip EQI_HAND_R;
    sleep2 1000;
}
end;

 

and it works amazing.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  81
  • Topics Per Day:  0.02
  • Content Count:  1654
  • Reputation:   583
  • Joined:  08/09/12
  • Last Seen:  

But, they could reequip their weapon again, isn't it?

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  5
  • Topics Per Day:  0.00
  • Content Count:  341
  • Reputation:   43
  • Joined:  01/10/12
  • Last Seen:  

They can but the script will unequip them again and again.

  • Upvote 1
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  81
  • Topics Per Day:  0.02
  • Content Count:  1654
  • Reputation:   583
  • Joined:  08/09/12
  • Last Seen:  

Thanks for the clarification, Joseph :)

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  5
  • Topics Per Day:  0.00
  • Content Count:  341
  • Reputation:   43
  • Joined:  01/10/12
  • Last Seen:  

You're welcome! xD

 

/me eats nanakiwurtz

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  0
  • Topics Per Day:  0
  • Content Count:  1
  • Reputation:   0
  • Joined:  04/27/13
  • Last Seen:  

sorry to bring this back up how about on a pvp map and gvg map?

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  82
  • Topics Per Day:  0.02
  • Content Count:  846
  • Reputation:   137
  • Joined:  02/26/14
  • Last Seen:  

sorry to bring this back up how about on a pvp map and gvg map?

You would just simply:

OnPCLoadMapEvent:
while( strcharinfo(3) == "mapname" ) || (strcharinfo(3) == "2ndmapname"){
	unequip EQI_HAND_L;
	unequip EQI_HAND_R;
	sleep2 5000;
}
end;

and so on

Link to comment
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.   Paste as plain text instead

  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.

×
×
  • Create New...