View Single Post
  #4  
Old 08-21-2014, 02:45 AM
Restraint Restraint is offline
NaS
Join Date: Jan 2014
Posts: 21
Restraint will become famous soon enough
Did you try something like...

PHP Code:
function onPlayerLogout(pl) {
  
pl.clientr.lastGuild pl.guild;

combined with:

PHP Code:
function onPlayerLogin(pl) {
  
pl.guild pl.clientr.lastGuild;

If that doesn't work, try a simple delay on the onPlayerLogin, such as:

PHP Code:
function onPlayerLogin(pl) {
  
scheduleEvent("fixGuild"1pl);
}
function 
onFixGuild(pl) {
  
pl.guild pl.clientr.lastGuild;

Reply With Quote