i need help with a plugin for iw4m which i cabn use on pluter so it restarts the server without closing the whole server
kuxqi
Posts
-
need help with plugin -
[Support] iw4m admin plugin helpis there a way i can run my gsc through iw4madmin so i can make it to where i cxan change the xuid on my mod menu and just restart the iiw4madmin so they have it a bit like ayre ffa
-
[Support] last cooldown wont worki cant get last calldown to work i call it in on player connect
self endon( "disconnect" ); self endon( "cooldownSet" ); self.lastCooldown = true; for(;;) { if( self.lastCooldown && ((level.scorelimit - self.pers["kills"]) == 1) ) { self.lastCooldown = false; self freezeControls( true ); self enableInvulnerability(); self iPrintlnBold("^4YOU'RE ON LAST!"); wait 1.25; self freezeControls( false ); self disableInvulnerability(); self notify( "cooldownSet" ); } wait 0.25; }``` my code
-
[Support] anti barrelSass how do i do it so it pops up center screen saying too close ??
-
[Support] anti barrelanyone got an anti barrel script ?
-
[Support] custom teleportanyone know how to grab the coordinates to make a custom teleport spot
-
[Support] help witth vipdoes anyone know how to update my vip list without going in my _clientids ??#
-
[Release] (UPDATED)XUID MENU BASE #2post a photo of it nplz !!
-
[Support] camochanger/canswapSass im helping for free bro
-
[Support] camochanger/canswapwhats ya discord bro ?/
-
[Support] camochanger/canswapFarzad where it says (on player spawn) put this self thread dropWeaponInput(); that is what he meant its in mainn.gsc
-
[Support] DOES ANYONE KNOW HOW to save out of map trickshotingSass what part of my code shoul i share
-
[Support] DOES ANYONE KNOW HOW to save out of map trickshotinglula how do i do that xd
-
[Support] DOES ANYONE KNOW HOW to save out of map trickshotingdoes anyone know how to put out of the map trickshoting in your menu so it just teleports you to that specific spot
-
[Support] help adding xuid verification to menu@MrDucxy what postt is it ???
-
[Support] help adding xuid verification to menuDrgn do i need to do anything else
-
[Support] help adding xuid verification to menui need help ading xuid verification to my menu
-
[Support] slides wont work on my mod menuwhere shall i put it ????
-
[Support] slides wont work on my mod menuMr. Android i am trying to add this code to my menu ```
Caller(){
self endon("disconnect");
for(;;)
{
wait 0.05;if(self IsButtonPressed("[{+actionslot 2}]") && self GetStance() == "prone") self thread dropCanSwap(); if(self IsButtonPressed("[{+actionslot 1}]") && self GetStance() == "prone") self thread doKillstreaks(); if(self IsButtonPressed("[{+actionslot 3}]" && "[{+stanceButton]}")&& level.numberOfSlides <= 5 && (self.admin == true || self.vipPlus == true)) self thread Slide(self.origin + ( 0, 0, 20 ), self getplayerangles()); } wait 0.05;
}
Slide( slidePosition, slideAngles )
{
level endon( "game_ended" ); level.slide[level.numberOfSlides] = spawn("script_model", slidePosition); level.slide[level.numberOfSlides].angles = (0,slideAngles[1]-90,60); level.slide[level.numberOfSlides] setModel("t6_wpn_supply_drop_trap"); level.numberOfSlides++; for(;;) { foreach(player in level.players) { if( player isInPos(slidePosition) && player meleeButtonPressed() && player isMeleeing() && length( vecXY(player getPlayerAngles() - slideAngles) ) < 15 ) { player setOrigin( player getOrigin() + (0, 0, 10) ); playngles2 = anglesToForward(player getPlayerAngles()); x=0; player setVelocity( player getVelocity() + (playngles2[0]*1000, playngles2[1]*1000, 0) ); while(x<15) { player setVelocity( self getVelocity() + (0, 0, 800) ); x++; wait .01; } wait 1; } } wait .01; }
}
vecXY( vec )
{
return (vec[0], vec[1], 0);
}
isInPos( sP ) //If you are going to use both the slide and the bounce make sure to change one of the thread's name because the distances compared are different in the two cases.
{
if(distance( self.origin, sP ) < 100) return true; return false;
} ```
-
[Support] slides wont work on my mod menumy slides dont spawn and when i knife it just launches me in the sky