Author Topic: ExEvent Popup... anyone else having problems?  (Read 3733 times)

0 Members and 1 Guest are viewing this topic.

Offline JustAnotherFaceTopic starter

  • Hero Member
  • *
  • Posts: 530
  • Activity:
    0%
  • Reputation Power: 8
  • JustAnotherFace has no influence.
  • Gender: Male
  • My new toy....
  • Respect: +24
  • Referrals: 4
    • View Profile
ExEvent Popup... anyone else having problems?
« on: April 17, 2010, 11:46:47 AM »
0
I seem to be having problems with ExEvent Popup.  The problem is that it doesnt popup!! lol.  I can stand in brit library and run the code below, it executes the code and halts, but it does not popup the npc's donation menu.

Code: [Select]
npc_loop:
finditem IS G_8
if #findcnt < 1
   return
event property #findid
if mage notin #property
   {
   ignoreitem #findid
   goto npc_loop
   }
set %npc #findid
wait 10
exevent popup %npc
halt

I can actually change the code to something like the one below and I can manually force the donation menu to popup
Code: [Select]
npc_loop:
finditem IS G_8
if #findcnt < 1
   return
event property #findid
if mage notin #property
   {
   ignoreitem #findid
   goto npc_loop
   }
set %npc #findid
wait 10
set #lobjectid %npc
event macro 17
;exevent popup %npc
halt

So, what is the deal?? Anyone have any ideas?

Thanks,

JaF
All that tyranny needs to gain a foothold is for people of good conscience to remain silent.
Thomas Jefferson

Offline JustAnotherFaceTopic starter

  • Hero Member
  • *
  • Posts: 530
  • Activity:
    0%
  • Reputation Power: 8
  • JustAnotherFace has no influence.
  • Gender: Male
  • My new toy....
  • Respect: +24
  • Referrals: 4
    • View Profile
Re: ExEvent Popup... anyone else having problems?
« Reply #1 on: April 17, 2010, 12:08:31 PM »
0
ok, I just noticed that it actually opens an "open paperdoll" menu. (was hidden by my options bar at the top). But, even when it opens this menu, the only option is open paperdoll, which of course does me no good.

Is there something that I am missing?  Have they changed this?

JaF
All that tyranny needs to gain a foothold is for people of good conscience to remain silent.
Thomas Jefferson

Offline JustAnotherFaceTopic starter

  • Hero Member
  • *
  • Posts: 530
  • Activity:
    0%
  • Reputation Power: 8
  • JustAnotherFace has no influence.
  • Gender: Male
  • My new toy....
  • Respect: +24
  • Referrals: 4
    • View Profile
Re: ExEvent Popup... anyone else having problems?
« Reply #2 on: April 17, 2010, 02:17:24 PM »
0
Ok, well maybe its just been so long since I used Exevent Popup on an NPC that I just forgot how it works.  Or maybe it changed since the last time that I used it.  Or maybe Im trying to use it incorrectly..... Either way, I will just use the second bit of code that I posted that DOES work.

Unless someone can show me how to make the popup do what I want.

Thanks,

JaF
All that tyranny needs to gain a foothold is for people of good conscience to remain silent.
Thomas Jefferson

Offline luv2luvlong

  • Sr. Member
  • *
  • Posts: 272
  • Activity:
    0%
  • Reputation Power: 4
  • luv2luvlong has no influence.
  • Gender: Male
  • Respect: +14
  • Referrals: 0
    • View Profile
Re: ExEvent Popup... anyone else having problems?
« Reply #3 on: April 17, 2010, 02:27:12 PM »
0
You want to last object the library donators to pull up there donation menus.
check out my tmap donator here.http://www.scriptuo.com/index.php?topic=4785.0
"If you know the enemy and know yourself, you need not fear the result of a hundred battles. If you know yourself but not the enemy, for every victory gained you will also suffer a defeat. If you know neither the enemy nor yourself, you will succumb in every battle" - Sun Tzu in reference to his five points of victory.

Offline JustAnotherFaceTopic starter

  • Hero Member
  • *
  • Posts: 530
  • Activity:
    0%
  • Reputation Power: 8
  • JustAnotherFace has no influence.
  • Gender: Male
  • My new toy....
  • Respect: +24
  • Referrals: 4
    • View Profile
Re: ExEvent Popup... anyone else having problems?
« Reply #4 on: April 17, 2010, 02:34:15 PM »
0
You want to last object the library donators to pull up there donation menus.
check out my tmap donator here.http://www.scriptuo.com/index.php?topic=4785.0

Thats what I had already figureded out in the second block of code above.  Thanks for the input, but I still have the question about Exevent popup.

JaF
All that tyranny needs to gain a foothold is for people of good conscience to remain silent.
Thomas Jefferson

Offline luv2luvlong

  • Sr. Member
  • *
  • Posts: 272
  • Activity:
    0%
  • Reputation Power: 4
  • luv2luvlong has no influence.
  • Gender: Male
  • Respect: +14
  • Referrals: 0
    • View Profile
Re: ExEvent Popup... anyone else having problems?
« Reply #5 on: April 17, 2010, 02:38:42 PM »
0
Quote
Thats what I had already figureded out in the second block of code above.  Thanks for the input, but I still have the question about Exevent popup.


it's for context menus like on bags of sending and buying selling to npc's
"If you know the enemy and know yourself, you need not fear the result of a hundred battles. If you know yourself but not the enemy, for every victory gained you will also suffer a defeat. If you know neither the enemy nor yourself, you will succumb in every battle" - Sun Tzu in reference to his five points of victory.

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: ExEvent Popup... anyone else having problems?
« Reply #6 on: April 17, 2010, 05:33:04 PM »
0
Yeah, exevent popup does the same thing as left clicking it once to bring up its menu.
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 JustAnotherFaceTopic starter

  • Hero Member
  • *
  • Posts: 530
  • Activity:
    0%
  • Reputation Power: 8
  • JustAnotherFace has no influence.
  • Gender: Male
  • My new toy....
  • Respect: +24
  • Referrals: 4
    • View Profile
Re: ExEvent Popup... anyone else having problems?
« Reply #7 on: April 17, 2010, 06:25:56 PM »
0
Like I said, been a long time since I used it... I thought I remembered being able to use it to open the donation menu.  I guess my memory is failing me in my old age!  Thanks for the help guys!!

JaF
All that tyranny needs to gain a foothold is for people of good conscience to remain silent.
Thomas Jefferson

Tags: