L2Tower Discord
Let's keep the community alive with discord.
Discussions about plugins and scripts
L2Tower Discord
Thread Rating:
- 14 Vote(s) - 2.14 Average
- 1
- 2
- 3
- 4
- 5
[HELP] Augment
|
Author |
Message |
dnb
Zaken's Royal Guard

Posts: 59
Joined: Mar 2012
Reputation: 1
Version:
1.4.2.132
|
[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 |
|
dnb
Zaken's Royal Guard

Posts: 59
Joined: Mar 2012
Reputation: 1
Version:
1.4.2.132
|
|
05-26-2012 22:16 PM |
|
dnb
Zaken's Royal Guard

Posts: 59
Joined: Mar 2012
Reputation: 1
Version:
1.4.2.132
|
|
05-27-2012 08:35 AM |
|
dnb
Zaken's Royal Guard

Posts: 59
Joined: Mar 2012
Reputation: 1
Version:
1.4.2.132
|
|
05-28-2012 02:19 AM |
|
dnb
Zaken's Royal Guard

Posts: 59
Joined: Mar 2012
Reputation: 1
Version:
1.4.2.132
|
|
05-28-2012 11:23 AM |
|
dnb
Zaken's Royal Guard

Posts: 59
Joined: Mar 2012
Reputation: 1
Version:
1.4.2.132
|
|
05-28-2012 20:01 PM |
|
dnb
Zaken's Royal Guard

Posts: 59
Joined: Mar 2012
Reputation: 1
Version:
1.4.2.132
|
|
05-29-2012 05:46 AM |
|
dnb
Zaken's Royal Guard

Posts: 59
Joined: Mar 2012
Reputation: 1
Version:
1.4.2.132
|
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 |
|
Possibly Related Threads... |
Thread: |
Author |
Replies: |
Views: |
Last Post |
|
Auto Augment - Services / AIO NPC. |
2pho3nix |
11 |
18,885 |
07-27-2020 09:37 AM
Last Post: z3renity
|
|
Interlude Augment script/plugin - l2mid |
anheoo |
4 |
9,819 |
04-05-2020 10:59 AM
Last Post: icarox3
|
|
H5 augment thingy |
Szakalaka |
1 |
4,775 |
11-21-2017 06:43 AM
Last Post: annavrah04
|
 |
help plugins Augment Interlude |
blackzer01 |
0 |
3,554 |
01-18-2016 17:01 PM
Last Post: blackzer01
|
|
Auto augment |
lostrelos |
0 |
5,929 |
02-16-2015 19:34 PM
Last Post: lostrelos
|
 |
HELP AUGMENT SCRIPT |
enio12 |
6 |
12,550 |
02-15-2015 03:40 AM
Last Post: eustach3
|
 |
Augment for Interlude "Services Manager" |
CRASHxtrm |
1 |
3,880 |
07-06-2014 10:13 AM
Last Post: Demon152
|
|
Augment Script |
BLUMCRAE1 |
0 |
5,621 |
06-08-2014 18:43 PM
Last Post: BLUMCRAE1
|
|
Augment Script Errors |
l2exee |
1 |
4,456 |
03-31-2014 05:50 AM
Last Post: mardukx
|
 |
[REQUEST] Auto Augment on INTERLUDE for RUPIO (NOT PUSHKIN) |
Oren |
0 |
3,122 |
02-10-2014 23:32 PM
Last Post: Oren
|
User(s) browsing this thread: 1 Guest(s)