Skip to content

darxper/Reflection

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

50 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Reflection

  • Includes Player Functions
  • Includes NPC Functions
  • Includes Model Rendering & Animations

Work In Progress..

Example Usage:

{$i Reflection/Reflection.simba}

var
  player: RSPlayer;
begin
  RSetup(6440);

  player := RSPlayer.Me;
  writeln(player.Name);
  player.Free;
end.
{$i Reflection/Reflection.simba}

var
  item: TRSBankItem;
begin
  RSetup(6440);

  item := R_FindBankItem(1024);
  if (item.isValid) then
  begin
    Mouse(item, R_RIGHTCLICK);
  end;
end.
{$i Reflection/Reflection.simba}

var
  item: TRSBankItem;
begin
  RSetup(6440);

  writeln(R_GetMMLevels(MM_LEVEL_HITPOINTS));
end.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Pascal 100.0%