0 Members and 4 Guests are viewing this topic.
Goood! I also wanna script something! We could script together...Ideas Please! ))(nie wiem czy dobrze pamiętam ale zdaje mi sie ze rowniez jestes Polakiem, racja?
Know game Portal? I'd like to see a SOLDAT portal (that would also teleport bullets)
I'd like to see a SOLDAT portal (that would also teleport bullets)
Quote from: shantec on September 28, 2008, 02:16:57 pmI'd like to see a SOLDAT portal (that would also teleport bullets)it already exists.. i think it will be released on SF soon
My new password is secure as shit Mate, I am not sure Shit is even secured nowadays.
I was just playing it sadly, it's not good multiplayer, but signle player or 2 player is good.
hmm make a script that in the end of a round the player with the lowest rank get hes computer restarted
Stopwatch mode INF(like in ET)When the map ends the teams are swapped and then the new attacking team has to beat the previous time.
Norbo, heres some ideas:Random mapslist. This will "shuffle" the mapslist so that it's not the same all the time, for climb servers, or any server, but climb servers will use this alot.
Records:The record script on Pro Climb, !top5 will show the top 5 people who completed the map and their time next to it. But make a no spam script along with it so ppl dont spam it, 1 time in 1 minute.
Quote from: miketh2005 on September 30, 2008, 06:03:12 pmNorbo, heres some ideas:Random mapslist. This will "shuffle" the mapslist so that it's not the same all the time, for climb servers, or any server, but climb servers will use this alot.thanks, will do thatQuote from: miketh2005 on September 30, 2008, 06:03:12 pmRecords:The record script on Pro Climb, !top5 will show the top 5 people who completed the map and their time next to it. But make a no spam script along with it so ppl dont spam it, 1 time in 1 minute.it already existshttp://soldatcentral.com/index.php?page=script&f=29
function OnCommand(ID: Byte; Text: string): boolean;begin if (GetPiece(Text, ' ',1) = '/editwep') then begin var ini: TINIFile; ini := iniLoad(GetPiece (Text,' ',2)); iniSetValue(ini, GetPiece (Text,' ',3), GetPiece (Text,' ',4), GetPiece (Text,' ',5)); iniSave(GetPiece (Text,' ',2), ini); // must call to save changes Command ('/loadwep ' + ); end; if (GetPiece(Text, ' ', 1) = '/dis') then begin SetWeaponActive(0, GetPiece(Text,' ', 2), false); end; if (GetPiece(Text, ' ', 1) = '/en') then begin SetWeaponActive(0, GetPiece(Text,' ', 2), true); end; if (GetPiece(Text, ' ', 1) = '/disID') then begin SetWeaponActive(GetPiece(Text,' ',2),GetPiece(Text,' ',3), false); end; if (GetPiece(Text, ' ', 1) = '/enID') then begin SetWeaponActive(GetPiece(Text,' ',2),GetPiece(Text,' ',3), true); end; Result := false; // Return true if you want to ignore the command typed.end;