L2Tower Discord Let's keep the community alive with discord. Discussions about plugins and scripts L2Tower Discord

Thread Closed 
 
Thread Rating:
  • 14 Vote(s) - 2.14 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[HELP] Augment
Author Message
dnb Offline
Zaken's Royal Guard
*

Posts: 59
Joined: Mar 2012
Reputation: 1
Version: 1.4.2.132
Post: #1
[HELP] Augment

Hello I'am trying to use the augment script on a interlude client. I'am obviously getting problems.


That is the error I get when I get to the point you need to insert your wep and ls, etc.

2012.5.26 05:41:29
OS : Windows XP 5.1 (Build: 2600)
CPU : AuthenticAMD Unknown processor @ 2859 MHz with 1918MB RAM
Video : NVIDIA GeForce 7025 / NVIDIA nForce 630a (8634)

General protection fault!

History: ExPutIntensiveResultForVariationMake <- UNetworkHandler::Tick <- Function Name=ExPutIntensiveR <- UGameEngine::Tick <- UpdateWorld <- MainLoop



Augment Script [The one Im using]


    LUA Programming
local weaponName = "Draconic Bow"
local lifestoneName = "High-Grade Life Stone: level 76"
local gemstoneName = "Gemstone C"
local gemstone_count = 25
local npcName = "Augmenter"
 
function getItemByName(name)
invList = GetInventory();
for item in invList.list do
if item.Name == name then
-- ShowToClient("ITEM", item.Name .. " (ID: " .. item.displayId .. ")");
return item
end
end
end
 
function openAugmentWindow(Pushkin)
target = GetTarget()
if ( target ~= nil ) then
if ( target:GetName() ~= Pushkin ) then
CancelTarget(true)
Sleep(1000)
TargetNpc(Pushkin, 0)
Sleep(1500)
end
else
TargetNpc(Pushkin, 0)
Sleep(1500)
end
 
target = GetTarget()
if ( target ~= nil and target:GetName() == Pushkin ) then
Talk()
Sleep(750)
Click("", "Augment item");
Sleep(750)
Click("", "Augment an item");
Sleep(750)
Click("", "Start augmenting.");
Sleep(750)
return true
end
return false
end
 
function openAugmentCancelWindow(Pushkin)
target = GetTarget()
if ( target ~= nil ) then
if ( target:GetName() ~= Pushkin ) then
CancelTarget(true)
Sleep(1500)
TargetNpc(Pushkin, 0)
Sleep(1500)
end
else
TargetNpc(Pushkin, 0)
Sleep(1500)
end
 
target = GetTarget()
if ( target ~= nil and target:GetName() == Pushkin ) then
Talk()
Sleep(750)
Click("", "Augment an item");
Sleep(750)
Click("", "Remove Augment");
Sleep(750)
Click("", "Remove the refined Life Stone.");
Sleep(750)
return true
end
return false
end
 
weapon = getItemByName(weaponName)
if ( weapon == nil ) then
ShowToClient("AUGMENT", "Could not find weapon " .. weaponName)
else
weaponId = weapon.objectId
GetAugmentManager():setItemId(weaponId)
repeat
if ( weapon.RefineryOp2 == 0 ) then
lifestone = getItemByName(lifestoneName)
gemstone = getItemByName(gemstoneName)
if ( lifestone == nil or gemstone == nil ) then
ShowToClient("AUGMENT:", "Out of gemstones or life stones")
break
end
 
GetAugmentManager():setItemId(weaponId)
GetAugmentManager():setLifeStoneId(lifestone.objectId)
GetAugmentManager():setGemstoneId(gemstone.objectId, 36)
GetAugmentManager():Augment()
 
if ( openAugmentWindow(npcName) == false ) then
break
end
 
while ( GetAugmentManager():getAugmentResult() == Augment.AUGMENT_PENDING ) do
Sleep(100)
end
if ( GetAugmentManager():getAugmentResult() == Augment.AUGMENT_FINISHED ) then
Sleep ( 1000 ) -- sleep so item data is updated
weapon = GetInventory():FindById(weaponId)
end
 
if ( GetAugmentManager():KeepAugment ( weapon.RefineryOp2 ) == true ) then
ShowToClient("AUGMENT:", "You have achieved desired augment! " .. weapon.RefineryOp2)
break
end
else
if ( GetAugmentManager():KeepAugment ( weapon.RefineryOp2 ) == true ) then
ShowToClient("AUGMENT:", "You have achieved desired augment! " .. weapon.RefineryOp2)
break
end
 
GetAugmentManager():setItemId(weaponId)
GetAugmentManager():AugmentCancel()
 
if ( openAugmentCancelWindow(npcName) == false ) then
break
end
 
while ( GetAugmentManager():getAugmentCancelResult() == Augment.AUGMENT_CANCEL_PENDING ) do
Sleep(200)
end
if ( GetAugmentManager():getAugmentCancelResult() == Augment.AUGMENT_FINISHED ) then
Sleep ( 100 ) -- sleep so item data is updated
end
weapon = GetInventory():FindById(weaponId)
end
until false
end



Whenever It gets to this point It crashes
Pic right here - http://imageshack.us/f/29/l2tower.png/
(This post was last modified: 05-29-2012 10:17 AM by Fox.)
05-26-2012 03:43 AM
Find all posts by this user
dnb Offline
Zaken's Royal Guard
*

Posts: 59
Joined: Mar 2012
Reputation: 1
Version: 1.4.2.132
Post: #2
RE: [HELP] Augment

bump
05-26-2012 22:16 PM
Find all posts by this user
dnb Offline
Zaken's Royal Guard
*

Posts: 59
Joined: Mar 2012
Reputation: 1
Version: 1.4.2.132
Post: #3
RE: [HELP] Augment

bump
05-27-2012 08:35 AM
Find all posts by this user
dnb Offline
Zaken's Royal Guard
*

Posts: 59
Joined: Mar 2012
Reputation: 1
Version: 1.4.2.132
Post: #4
RE: [HELP] Augment

bump
05-28-2012 02:19 AM
Find all posts by this user
dnb Offline
Zaken's Royal Guard
*

Posts: 59
Joined: Mar 2012
Reputation: 1
Version: 1.4.2.132
Post: #5
RE: [HELP] Augment

bump
05-28-2012 11:23 AM
Find all posts by this user
dnb Offline
Zaken's Royal Guard
*

Posts: 59
Joined: Mar 2012
Reputation: 1
Version: 1.4.2.132
Post: #6
RE: [HELP] Augment

bump
05-28-2012 20:01 PM
Find all posts by this user
dnb Offline
Zaken's Royal Guard
*

Posts: 59
Joined: Mar 2012
Reputation: 1
Version: 1.4.2.132
Post: #7
RE: [HELP] Augment

bump
05-29-2012 05:46 AM
Find all posts by this user
Onomatopeja Offline
VIP Member
***

Posts: 338
Joined: Sep 2011
Reputation: 34
Version: 1.4.2.142
Post: #8
RE: [HELP] Augment

if u r expecting help u sould buy premium tower licence.
05-29-2012 07:21 AM
Find all posts by this user
Fox Away
Fraka-kaka-kaka-kaka-kow!
******

Posts: 5,640
Joined: Oct 2011
Reputation: -6666548
Version: 1.4.2.142
Post: #9
RE: [HELP] Augment

premium is required for script functions mainly... and what you want is CUSTOM to your server that's why no one helps, because it requites someone whit script knowledge to actually play on your server.


G2A is a fantastic web-store where you can buy games cheap (40%+ Discounts!)
[Image: uaFndGu.gif]
05-29-2012 10:21 AM
Visit this user's website Find all posts by this user
dnb Offline
Zaken's Royal Guard
*

Posts: 59
Joined: Mar 2012
Reputation: 1
Version: 1.4.2.132
Post: #10
RE: [HELP] Augment

Well can anyone help me with this issue?

http://interlude.pro/ - server name

If anyone considers helping with the script

and accs are auto create

bump
(This post was last modified: 05-30-2012 06:04 AM by dnb.)
05-30-2012 01:37 AM
Find all posts by this user
Thread Closed 


Possibly Related Threads...
Thread: Author Replies: Views: Last Post
  Auto Augment - Services / AIO NPC. 2pho3nix 11 17,550 07-27-2020 09:37 AM
Last Post: z3renity
  Interlude Augment script/plugin - l2mid anheoo 4 9,212 04-05-2020 10:59 AM
Last Post: icarox3
  H5 augment thingy Szakalaka 1 4,443 11-21-2017 06:43 AM
Last Post: annavrah04
WTS help plugins Augment Interlude blackzer01 0 3,199 01-18-2016 17:01 PM
Last Post: blackzer01
  Auto augment lostrelos 0 5,473 02-16-2015 19:34 PM
Last Post: lostrelos
Information HELP AUGMENT SCRIPT enio12 6 11,797 02-15-2015 03:40 AM
Last Post: eustach3
F.A.Q. Augment for Interlude "Services Manager" CRASHxtrm 1 3,450 07-06-2014 10:13 AM
Last Post: Demon152
  Augment Script BLUMCRAE1 0 5,166 06-08-2014 18:43 PM
Last Post: BLUMCRAE1
  Augment Script Errors l2exee 1 4,046 03-31-2014 05:50 AM
Last Post: mardukx
Information [REQUEST] Auto Augment on INTERLUDE for RUPIO (NOT PUSHKIN) Oren 0 2,895 02-10-2014 23:32 PM
Last Post: Oren



User(s) browsing this thread: 1 Guest(s)