We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf47ad0 commit a9883b3Copy full SHA for a9883b3
Internal/RSClient.simba
@@ -372,6 +372,16 @@ begin
372
Result := False; //(W <> 765) or (H <> 503);
373
end;
374
375
+Function RSClient.RunEnergy: Int32; static;
376
+begin
377
+ Result := RGetInt(R_EIOS, nil, CLIENT_ENERGY) div 100;
378
+end;
379
+
380
+Function RSClient.Weight: Int32; static;
381
382
+ Result := RGetInt(R_EIOS, nil, CLIENT_WEIGHT);
383
384
385
Function RSClient.GetVarBit(ID: Int32): Int32; static;
386
var
387
Definition: RSVarbitDefinition;
@@ -478,3 +488,8 @@ Function RSClient.AccountStatus: Int32; static;
478
488
begin
479
489
Result := RGetStaticInt(R_EIOS, Login_AccountStatus);
480
490
491
492
+Function RSClient.CurrentWorld: Int32; static;
493
494
+ Result := RGetInt(R_EIOS, nil, CLIENT_CURRENTWORLD);
495
0 commit comments