Search found 140 matches

by lolita
Sun Jan 06, 2013 5:35 pm
Forum: Userfunctions, waypoint scripts, etc.
Topic: Level 35 gift bag (Sea of Snow Package)
Replies: 60
Views: 22487

Re: Level 35 gift bag (Sea of Snow Package)

i need litle help this is part of list of npc's and X.positon of them npcpos = { 112461 = "-13956", -- Joey Klongen 112463 = "-13126", -- Ross Bete 112462 = "-12779", -- Laura Febrey 112465 = "-13901" -- Mary-Ann Lewinsky } and function something like this fun...
by lolita
Sun Jan 06, 2013 2:49 pm
Forum: Runes of Magic
Topic: DoD (First boss solo farm) Better for R/S
Replies: 53
Views: 22240

Re: DoD (First boss solo farm) Better for R/S

number is max time in second's wich bot will wait for loading screen, and than continue
by lolita
Sun Jan 06, 2013 7:59 am
Forum: Runes of Magic
Topic: DoD (First boss solo farm) Better for R/S
Replies: 53
Views: 22240

Re: DoD (First boss solo farm) Better for R/S

- Sell more fast (if i find :p) use this for quick sell function Sellslots1() --Function SellSlot 1 to 30, first backpack if StoreFrame:IsVisible() then for i=1,30,1 do local inventoryIndex,a,name,b,c,d = GetBagItemInfo(i);UseBagItem(inventoryIndex); end; end end it's part of RoM addon, i dont know...
by lolita
Sat Jan 05, 2013 5:00 am
Forum: Userfunctions, waypoint scripts, etc.
Topic: rock5's "fastLogin Revisited"
Replies: 914
Views: 330243

Re: rock5's "fastLogin Revisited"

rock5 wrote:It hardly makes any difference, if it logs off or quits the games.
well difrence is , if you run 4-5 client's on same comp, if you quit game insted of log of, you free cpu and ram, les chance for other client's to crash :D
by lolita
Fri Jan 04, 2013 6:51 pm
Forum: Userfunctions, waypoint scripts, etc.
Topic: rock5's "fastLogin Revisited"
Replies: 914
Views: 330243

Re: rock5's "fastLogin Revisited"

If you run multyple clients on your comp, when last char is finished, you most likely want to Quit game. I didn't find this anywhere on forum, so i added this to "Rock5's LoginNextChar Functions" if nextAcc == nil then if (Quit_Game == "true") then -- we will quit game print(&quo...
by lolita
Fri Jan 04, 2013 6:32 pm
Forum: Runes of Magic
Topic: getMainHandDurability() don't work
Replies: 2
Views: 1030

Re: getMainHandDurability() don't work

maybe cose

Code: Select all

105/100=1.05
95*1.05=99.75 -- Low Dura
but
96*1.05=100.8 -- High Dura
try

Code: Select all

function checkdura()
	if ( 96 > inventory:getMainHandDurability() ) then 
		__WPL:setWaypointIndex(__WPL:findWaypointTag("mech"))
	end
end
by lolita
Fri Dec 28, 2012 4:18 pm
Forum: Userfunctions, waypoint scripts, etc.
Topic: Rock5's Mail Mods
Replies: 766
Views: 256316

Re: Rock5's Mail Mods

Ty rock5 it work now :D So basicly everyone can use onload <onLoad> local mailingList = { "one", "two", "three" } function send_fusions() for k,name in pairs(mailingList) do UMM_SendByNameOrId(name,{"Fusion Stone","Random Fusion Stone"}, 10) end end ...
by lolita
Fri Dec 28, 2012 8:31 am
Forum: Userfunctions, waypoint scripts, etc.
Topic: Rock5's Mail Mods
Replies: 766
Views: 256316

Re: Rock5's Mail Mods

i am trying to add this code to userfunctions and just call it from command line mailingList = { "one", "two", "three" } function send_fusions() mailingIndex = 1 -- Check if name exists if mailingList[mailingIndex] == nil then error("Finished sending to all recipie...
by lolita
Thu Dec 27, 2012 7:58 pm
Forum: Userfunctions, waypoint scripts, etc.
Topic: lolita's minigame clear bag function
Replies: 0
Views: 2364

lolita's minigame clear bag function

I run a lot alt's thru minigame, and eventualy run out of bag space, so i made this userfunction. It send some items to alt's and rest of junk is deleted How to use Just go neer mailbox and call "cotclean()" function Ofcourse change the name of alt's in file on line's 9 -- "Junk"...
by lolita
Wed Dec 26, 2012 7:04 am
Forum: Runes of Magic
Topic: Item Delete
Replies: 17
Views: 4778

Re: Item Delete

lol, i forget to add

Code: Select all

for i, item in pairs(inventory.BagSlot) do
thx botje it work now lika charm
by lolita
Wed Dec 26, 2012 6:36 am
Forum: Runes of Magic
Topic: Item Delete
Replies: 17
Views: 4778

Re: Item Delete

-- custom database for user added items to trow out forcedrop = { "Unknown Gift", "Lost Gift", "Sled Fragment", } for k, v in ipairs(forcedrop) do if v == item.Name then printf("Deleting Item: "..item.Name.."\n"); item:delete(); end end this code wo...
by lolita
Tue Dec 25, 2012 10:11 am
Forum: Userfunctions, waypoint scripts, etc.
Topic: Noobbotter's World Traveler Userfunction
Replies: 96
Views: 26393

Re: Noobbotter's World Traveler Userfunction

I'll look what's wrong with Ayren caravan teleport, and add transport to Chrysalia and to Gobline Mines.
I'll post code tomorow, after all it's Christmas Time.

Merry Christmas to all :)

** EDIT
i edited post above, have fun
by lolita
Mon Dec 24, 2012 10:00 pm
Forum: Runes of Magic
Topic: MicroMacro update; testers needed
Replies: 33
Views: 15312

Re: MicroMacro update; testers needed

NoobBotter worldtravel function dont work with this

Code: Select all

Command> takemeto("VaranasBridge")
Now Transporting to Varanas Gates
onLoad error: ...scripts/RC2/userfunctions/userfunction_worldtraveler.lua:154:
attempt to call field 'gfind' (a nil value)
by lolita
Mon Dec 24, 2012 10:24 am
Forum: Runes of Magic
Topic: Using Vehicles
Replies: 19
Views: 4933

Re: Using Vehicles

why you want to destroy gate anyway?
why don't you just fly over it? :P
by lolita
Mon Dec 24, 2012 8:33 am
Forum: Runes of Magic
Topic: Item Delete
Replies: 17
Views: 4778

Re: Item Delete

how to make table of items for delete and use it from function. something like this? local DeleteItem = { [111222] = true, [112211] = false, [221122] = true, [121212] = true, [212121] = false, [221111] = true, } function ClearBag() local empties = inventory:itemTotalCount(0) if 10 > empties then ite...
by lolita
Mon Dec 24, 2012 7:30 am
Forum: Userfunctions, waypoint scripts, etc.
Topic: Noobbotter's World Traveler Userfunction
Replies: 96
Views: 26393

Re: Noobbotter's World Traveler Userfunction

Here it is, edited version of Noobbotter's World Traveler Userfunction (hope NoobBotter wont mind :D ) ** Edited Heffner/Xaviera teleports for 5.0.6 patch ** Added transport to/from Chrysalia. Keyword "Chrysalia" ** Added direct transport to/from Goblin Mines. Keyword "GoblinMines&quo...
by lolita
Thu Dec 20, 2012 1:58 pm
Forum: Runes of Magic
Topic: Item Delete
Replies: 17
Views: 4778

Re: Item Delete

ye, tru, that's better :lol: , think im gona use it too :P
by lolita
Thu Dec 20, 2012 1:55 pm
Forum: Runes of Magic
Topic: Item Delete
Replies: 17
Views: 4778

Re: Item Delete

cod i posted work's fine for me, on blend and activate runes farm alt's :)
by lolita
Mon Dec 17, 2012 12:38 pm
Forum: Runes of Magic
Topic: Item Delete
Replies: 17
Views: 4778

Re: Item Delete

try this function CleanBag() for i, item in pairs(inventory.BagSlot) do if item.SlotNumber >= settings.profile.options.INV_AUTOSELL_FROMSLOT + 60 and settings.profile.options.INV_AUTOSELL_TOSLOT + 60 >= item.SlotNumber then if item:isType("Arrows") then item:delete() end if item:isType(&qu...
by lolita
Sun Dec 16, 2012 8:31 pm
Forum: Runes of Magic
Topic: I want to sell items to npc
Replies: 6
Views: 1859

Re: I want to sell items to npc

I gues, whan you farm KS you are in party, so you can try this function settings.profile.events.onSkillCast() inventory:update() If 1 > inventory:itemTotalCount(0) then RoMScript("LeaveParty()") waitForLoadingScreen() __WPL:setWaypointIndex(__WPL:findWaypointTag("vendor")); end e...