Author Topic: clent crach on drop sub  (Read 1919 times)

0 Members and 1 Guest are viewing this topic.

Offline The GhostTopic starter

  • Elite
  • *
  • *
  • Posts: 1917
  • Activity:
    0%
  • Reputation Power: 25
  • The Ghost is on the verge of being accepted.The Ghost is on the verge of being accepted.The Ghost is on the verge of being accepted.The Ghost is on the verge of being accepted.The Ghost is on the verge of being accepted.
  • Respect: +245
  • Referrals: 0
    • View Profile
clent crach on drop sub
« on: January 13, 2014, 12:35:27 PM »
0
It seen that this sub make my client crash sometime.  it could be find for a few day and other it will crash a few time in a day.     any reason for it.  The flow seen to make seen to me.   Should I increase the wait time.

Code: [Select]
sub organize
 namespace push
  namespace local ORG
FindItem %TurnIN C_ , %itembox
if #FINDCNT =  100
   return
finditem %TurnIN C_ , #backpackid
  for #FINDINDEX 1 #FINDCNT
  {
  exEvent Drag #findID
  exevent dropc %itembox
  wait 21
  }
  namespace pop
return #true

Offline manwinc

  • Elite
  • *
  • *
  • Posts: 2556
  • Activity:
    0%
  • Reputation Power: 32
  • manwinc is a rising star!manwinc is a rising star!manwinc is a rising star!manwinc is a rising star!manwinc is a rising star!manwinc is a rising star!
  • Gender: Male
  • "The Devs Hard at Work"
  • Respect: +123
  • Referrals: 1
    • View Profile
Re: clent crach on drop sub
« Reply #1 on: January 13, 2014, 12:41:58 PM »
0
When using
Code: [Select]
For #Findindex 1 #Findcnt
{
}
Always make sure that there are items before doing it.

Code: [Select]
if #Findcnt > 0
{
For #Findindex 1 #findcnt
{
}
}
This is the Reason
Code: [Select]
For %Number 1 0
{
Display This is the Reason
}
Halt

Everyone is different, but usually I use  
Exevent Drag
wait 15
Exevent Dropc
wait 15

This usually gets me some Stability when moving things. People will fight it all day long, its slower, but when you lag you don't usually get the ghost images.
Monkeys and Typewriters!

" Oh I know, We'll make a Boss Encounter that requires 3 keys per player to enter, Then we'll make it not a closed instance so you never know if you are going to pop into a fresh room or a boss that has 1% Health left with 20 dudes smashing its face in, wasting your time and effort"

Offline Tidus

  • Lazy
  • Administrator
  • *
  • *
  • Posts: 1291
  • Activity:
    0%
  • Reputation Power: 15
  • Tidus is working their way up.Tidus is working their way up.Tidus is working their way up.
  • Gender: Male
  • Mind Blown
  • Respect: +151
  • Referrals: 2
    • View Profile
    • Ultimate Apparel
Re: clent crach on drop sub
« Reply #2 on: January 13, 2014, 02:58:42 PM »
0
Could be because you have no wait between your drag and then the drop.  MW pointed out alot of good things. Read his post well and expiriment and you will understand.
For those who have fought for it, freedom has a taste the protected will never know ~ Anonymous, Vietnam, 1968

Tags: