Author Topic: Transfering Faction points  (Read 5642 times)

0 Members and 1 Guest are viewing this topic.

Offline NoobieTopic starter

  • Sr. Member
  • *
  • Posts: 262
  • Activity:
    0%
  • Reputation Power: 1
  • Noobie has no influence.
  • Gender: Male
  • Respect: +13
  • Referrals: 1
    • View Profile
Transfering Faction points
« on: January 26, 2010, 11:43:51 AM »
0
Does anyone know if there is a script that will transfer lots of faction points easily?

Offline Xclio

  • Officially "The MAN"
  • Elite
  • *
  • *
  • Posts: 981
  • Activity:
    0%
  • Reputation Power: 9
  • Xclio has no influence.
  • Gender: Male
  • Respect: +56
  • Referrals: 1
    • View Profile
Re: Transfering Faction points
« Reply #1 on: January 26, 2010, 11:49:15 AM »
0
Probably nothing out there, it is only about 3 or 4 lines of code though.  Do it once by hand and then run the below code.

Code: [Select]
Event Macro 1 0 I honor your leadership
target 5s
event macro 22 0 ;Last target
wait 10
return

Offline NoobieTopic starter

  • Sr. Member
  • *
  • Posts: 262
  • Activity:
    0%
  • Reputation Power: 1
  • Noobie has no influence.
  • Gender: Male
  • Respect: +13
  • Referrals: 1
    • View Profile
Re: Transfering Faction points
« Reply #2 on: January 26, 2010, 11:52:27 AM »
0
I was just wondering if there was one that you could enter how many points you would like to transfer and it would wip it out quick fast. Just was wondering if there was one out there. Thanks!

Offline Khameleon

  • Script Tester - Team Leader
  • Elite
  • *
  • *
  • Posts: 2574
  • Activity:
    0%
  • Reputation Power: 30
  • Khameleon is a rising star!Khameleon is a rising star!Khameleon is a rising star!Khameleon is a rising star!Khameleon is a rising star!Khameleon is a rising star!
  • Gender: Male
  • Respect: +238
  • Referrals: 0
    • View Profile
Re: Transfering Faction points
« Reply #3 on: January 26, 2010, 11:57:37 AM »
0

Code: [Select]
Top:
Set #Ltarget Xclio
Event Macro 1 0 I honor your leadership
target 5s
event macro 22 0 ;Last target
wait 10
Goto top

:P

Offline Xclio

  • Officially "The MAN"
  • Elite
  • *
  • *
  • Posts: 981
  • Activity:
    0%
  • Reputation Power: 9
  • Xclio has no influence.
  • Gender: Male
  • Respect: +56
  • Referrals: 1
    • View Profile
Re: Transfering Faction points
« Reply #4 on: January 26, 2010, 12:02:10 PM »
0
Nothing like that out there, though again wouldn't be overly complicated to do but would require more than 5 line of code.

Offline 12TimesOver

  • Another Day, Another Vendetta
  • Global Moderator
  • *
  • *
  • Posts: 3694
  • Activity:
    0%
  • Reputation Power: 41
  • 12TimesOver is a force to reckon with.12TimesOver is a force to reckon with.12TimesOver is a force to reckon with.12TimesOver is a force to reckon with.12TimesOver is a force to reckon with.12TimesOver is a force to reckon with.12TimesOver is a force to reckon with.12TimesOver is a force to reckon with.
  • Gender: Male
  • Respect: +321
  • Referrals: 2
    • View Profile
Re: Transfering Faction points
« Reply #5 on: January 26, 2010, 12:06:55 PM »
0
It would be easy for sure.

How many points are given each time you honor leadership? Someone gave me points the other night and it was four at a time, is that what it always is or does it fluctuate based on how many points you have?

When they come for me I'll be sitting at my desk
     with a gun in my hand wearing a bulletproof vest
My, my, my how the time does fly
     when you know you're gonna die by the end of the night

Offline _C2_

  • AFK FtW
  • Global Moderator
  • *
  • *
  • Posts: 4077
  • Activity:
    0%
  • Reputation Power: 48
  • _C2_ has great potential!_C2_ has great potential!_C2_ has great potential!_C2_ has great potential!_C2_ has great potential!_C2_ has great potential!_C2_ has great potential!_C2_ has great potential!_C2_ has great potential!
  • RIP Pen Trick
  • Respect: +254
  • Referrals: 4
    • View Profile
Re: Transfering Faction points
« Reply #6 on: January 26, 2010, 12:07:26 PM »
0
you could do:

for #cnt 0 %yournumber
 {
  do the above stuff
 }
halt

Offline Xclio

  • Officially "The MAN"
  • Elite
  • *
  • *
  • Posts: 981
  • Activity:
    0%
  • Reputation Power: 9
  • Xclio has no influence.
  • Gender: Male
  • Respect: +56
  • Referrals: 1
    • View Profile
Re: Transfering Faction points
« Reply #7 on: January 26, 2010, 12:08:54 PM »
0
Whenever you give points you lose 5 while the person receiving points gains 4.

Offline 12TimesOver

  • Another Day, Another Vendetta
  • Global Moderator
  • *
  • *
  • Posts: 3694
  • Activity:
    0%
  • Reputation Power: 41
  • 12TimesOver is a force to reckon with.12TimesOver is a force to reckon with.12TimesOver is a force to reckon with.12TimesOver is a force to reckon with.12TimesOver is a force to reckon with.12TimesOver is a force to reckon with.12TimesOver is a force to reckon with.12TimesOver is a force to reckon with.
  • Gender: Male
  • Respect: +321
  • Referrals: 2
    • View Profile
Re: Transfering Faction points
« Reply #8 on: January 26, 2010, 12:13:18 PM »
0
Ah ok. So it would be pretty easy to:

1) Put in how many points you want to give
2) Target the toon you want to give them to
3) Perform the honor action
4) Checks and balances for success (ie, make sure toon is there, confirm that it was successful (journal scan perhaps, etc)

Maybe not 5 lines but I'll bet it's not 100 ;)

X
When they come for me I'll be sitting at my desk
     with a gun in my hand wearing a bulletproof vest
My, my, my how the time does fly
     when you know you're gonna die by the end of the night

Scrripty

  • Guest
Re: Transfering Faction points
« Reply #9 on: January 26, 2010, 12:39:14 PM »
0
Wouldn't this work?

%howmanytimesyouwanttohonor = 5 points per honor... so 100 points would be 20.  Which would give 80 points to the person you're transferring TO.

Code: [Select]
SET %howmanytimesyouwanttohonor 10

FOR %i = 1 to %howmanytimesyouwanttohonor
{
  Event Macro 1 0 I honor your leadership
  target 5s
  event macro 22 0 ;Last target
  wait 10
}
« Last Edit: January 26, 2010, 12:41:00 PM by Scripty »

Offline 12TimesOver

  • Another Day, Another Vendetta
  • Global Moderator
  • *
  • *
  • Posts: 3694
  • Activity:
    0%
  • Reputation Power: 41
  • 12TimesOver is a force to reckon with.12TimesOver is a force to reckon with.12TimesOver is a force to reckon with.12TimesOver is a force to reckon with.12TimesOver is a force to reckon with.12TimesOver is a force to reckon with.12TimesOver is a force to reckon with.12TimesOver is a force to reckon with.
  • Gender: Male
  • Respect: +321
  • Referrals: 2
    • View Profile
Re: Transfering Faction points
« Reply #10 on: January 26, 2010, 12:40:22 PM »
0
Should do just fine :P
When they come for me I'll be sitting at my desk
     with a gun in my hand wearing a bulletproof vest
My, my, my how the time does fly
     when you know you're gonna die by the end of the night

Scrripty

  • Guest
Re: Transfering Faction points
« Reply #11 on: January 26, 2010, 12:42:49 PM »
0
Nothing like that out there, though again wouldn't be overly complicated to do but would require more than 5 line of code.

Yea 7. :) heh

Offline 12TimesOver

  • Another Day, Another Vendetta
  • Global Moderator
  • *
  • *
  • Posts: 3694
  • Activity:
    0%
  • Reputation Power: 41
  • 12TimesOver is a force to reckon with.12TimesOver is a force to reckon with.12TimesOver is a force to reckon with.12TimesOver is a force to reckon with.12TimesOver is a force to reckon with.12TimesOver is a force to reckon with.12TimesOver is a force to reckon with.12TimesOver is a force to reckon with.
  • Gender: Male
  • Respect: +321
  • Referrals: 2
    • View Profile
Re: Transfering Faction points
« Reply #12 on: January 26, 2010, 12:43:48 PM »
0
Nothing like that out there, though again wouldn't be overly complicated to do but would require more than 5 line of code.

Yea 7. :) heh
I counted 8 with brackets and not counting the blank line LOL!
When they come for me I'll be sitting at my desk
     with a gun in my hand wearing a bulletproof vest
My, my, my how the time does fly
     when you know you're gonna die by the end of the night

Scrripty

  • Guest
Re: Transfering Faction points
« Reply #13 on: January 26, 2010, 12:50:28 PM »
0
5 lines.  Bam.

Code: [Select]
SET %howmanytimestohonor 10

FOR %i 1 %howmanytimestohonor
{
  EVENT macro 1 0 I honor your leadership
  TARGET 5s
  EVENT macro 22 0 ;Last target
  WAIT 15
}
IF %i >= %howmanytimestohonor
  HALT
« Last Edit: January 26, 2010, 01:01:08 PM by Scripty »

Scrripty

  • Guest
Re: Transfering Faction points
« Reply #14 on: January 26, 2010, 01:42:48 PM »
0
Here ya go people.  V1.0 of Twinkle McNugget's HONOR TRANSFER!  Wooho! :)

There are 1 attachment(s) in this post. You must register and post an acceptable introduction to download
Scripty's Honor Transfer!.txt
« Last Edit: January 26, 2010, 01:44:27 PM by Scripty »

Tags: