Well, as i explained in the subject,that's what happens when you perform those actions...
Here is the solution:
Code:
User_LookAtTile
Search:
Code:
If UserList(TempIndex).Group > 0 Then
ConBuf.Put_String GroupRanks(UserList(TempIndex).GroupRank) & " " & UserList(TempIndex).Name & " of " & UserList(TempIndex).Group
Else
Replace it with:
Code:
If UserList(TempIndex).Group <> "" Then
ConBuf.Put_String GroupRanks(UserList(TempIndex).GroupRank) & " " & UserList(TempIndex).Name & " of " & UserList(TempIndex).Group
Else
Conclusion:
The Bug consisted on the >0, because as groupname is a string, you can't add it as if it were a byte. So, the solution was <> "" , that serves to verify if it has changed.
Now you can set your desc and view it without having the game crash.
Sorry if my grammar or orthography are not perefect, i'm not a native speaker. (i live in argentina). If i made any errors, please feel free to correct them.