How do I retrieve level of another character?

xyz2453

New member
Messages
1
Points
0
It's appeared to me that you can only retrieve variables from the currently interacting PC. Or am I wrong? Any work around?

 
Last edited by a moderator:
It's appear to me that you can only retrieve variables from the currently interacting PC. Or am I wrong? Any work around?
If the Other Player is online, then (Here's a Small Snippet of how to do)

.@other_blvl = 0;
.@other_accid = 2000001;
if (attachrid(.@other_accid)) {
.@other_blvl = BaseLevel;
} else {
dispbottom "Player Offline";
end;
}
dispbottom "Base Level of Other Player: "+ .@other_blvl;
end;

if Player Offline, then you need to use SQL Queries

 
Back
Top