Request softwares here

Posts 1621 of 21 · Page 2 of 2
would you be able to make a client that shows the entire minimap explored? that would be amazing
Convert a swf to and exe
You need the raw projector.exe from Adobe website

and there is a Delphi snippet :

Code:
function Swf2Exe(S, D, F: string): string;
var
  SourceStream, DestinyStream, LinkStream: TFileStream;
  flag: Cardinal;
  SwfFileSize: Integer;
begin
  Result := 'something error';
  DestinyStream := TFileStream.Create(D, fmCreate);
  try
    LinkStream := TFileStream.Create(F, fmOpenRead or fmShareExclusive);
    try
      DestinyStream.CopyFrom(LinkStream, 0);
    finally
      LinkStream.Free;
    end;
    SourceStream := TFileStream.Create(S, fmOpenRead or fmShareExclusive);
    try
      DestinyStream.CopyFrom(SourceStream, 0);
      flag := $FA123456;
      DestinyStream.WriteBuffer(flag, SizeOf(Integer));
      SwfFileSize := SourceStream.Size;
      DestinyStream.WriteBuffer(SwfFileSize, SizeOf(Integer));
      Result := '';
    finally
      SourceStream.Free;
    end;
  finally
    DestinyStream.Free;
  end;
end;

procedure TForm1.Button1Click(Sender: TObject);
begin
  Swf2Exe('c:\somefile.swf', 'c:\somefile.exe',
    'c:\Program Files\Macromedia\Flash MX\Players\SAFlashPlayer.exe');
end;
Quote Originally Posted by UGCfour View Post
I want something like aimbot but where if you type in /cube or /geb or /sumomaster, ect. you dont shoot at them or even better your shot that if you have a bow. the dmg dosen't register.
the idea is from this
http://www.mpgh.net/forum/655-realm-...mb-farmer.html
also in responce to this can you make a client with no clip?
or put the code for no clip and where to find it EG: _-E3
and where to put it in the code. thanks!
Quote Originally Posted by BernardoLima View Post
PS: I'm not planning in develop new mods.
Probably unlikely he'll do those thing @UGCfour.
Quote Originally Posted by nilly View Post
Probably unlikely he'll do those thing @UGCfour.
Yep, I regret not saying "I will definitely not make mods".
But I dont know, maybe it wouldn't work either.
Oh! how about a weapon switcher!

So when you are a knight with a dblade, acclaim, and a csword, you have assigned hotkeys that switch weapons and such!
Posts 1621 of 21 · Page 2 of 2

Post a Reply

Similar Threads

Tags for this Thread

None

Need help?