"@" variable problem. Please help

almarket23

New member
Messages
90
Points
0
Github
nexus
Emulator
Hi everyone. I am doing a custom Instance but I am having a problem with this one.

"@"      - A temporary variable attached to the character. 
           They disappear when the character logs out.
 
 
Is there a way to remove this variable to a specific character when he/she go inside a map?
let say for exaample "prontera", instead of logging out to remove this variable can it be possible to remove this when they go to a specific map?
 
 
 
Yes. When player goes inside a map, you can remove the variable by setting it to 0 or to empty string. Examples:
 

@var = 0;
@var$ = "";


The first one for integer variables and the second one for string variables. You can do this in the npc that sends player inside the instance, or using getpartymember() and attachrid() commands as the example of this other topic.
 
R418.109300

 
Last edited by a moderator:
Back
Top