Lua error menu

User Tag List

Thread: Lua error

Results 1 to 9 of 9
  1. #1
    deChad's Avatar Member
    Reputation
    1
    Join Date
    Aug 2010
    Posts
    13
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Lua error

    Hello guys,
    why do I get Lua error of pe, if I delete wtf folders?

    Best regards
    dechad

    Lua error
  2. #2
    Filint's Avatar Contributor Authenticator enabled
    Reputation
    167
    Join Date
    Mar 2014
    Posts
    97
    Thanks G/R
    23/56
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Best if you post the error, I think, so that we can have some more info and maybe try to help you.

  3. Thanks deChad (1 members gave Thanks to Filint for this useful post)
  4. #3
    deChad's Avatar Member
    Reputation
    1
    Join Date
    Aug 2010
    Posts
    13
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hello Flint, sorry you are right...

    Here is the log:
    Code:
    Message: ...obably_***\Rotation\Shaman\***.lua:73: attempt to concatenate a nil value
    Time: 01/29/16 10:22:53
    Count: 320
    Stack: [C]: ?
    ...obably_***\Rotation\Shaman\***.lua:73: in function `evaluation'
    Interface\AddOns\Probably\system\core\parser.lua:188: in function `nested'
    Interface\AddOns\Probably\system\core\parser.lua:261: in function `table'
    Interface\AddOns\Probably\system\core\parser.lua:333: in function `table'
    Interface\AddOns\Probably\system\timers\rotation.lua:19: in function `faceroll'
    Interface\AddOns\Probably\system\timers\rotation.lua:45: in function `event'
    Interface\AddOns\Probably\system\core\timer.lua:16: in function <Interface\AddOns\Probably\system\core\timer.lua:11>
    
    Locals:
    This error comes, if I delete the Probably.lua in WTF/SavedVariables.

    I cannot understand it, why?

    Best regards
    dechad

  5. #4
    akeon1's Avatar Contributor
    Reputation
    103
    Join Date
    Sep 2011
    Posts
    265
    Thanks G/R
    3/7
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    this error occurs when you try and compare the current value to 'nothing'.
    For example spell 1 triggers at "x" value. but you haven't set what "x" is.
    `
    Who's rotations are you using? Try toggle the settings of the rotation, to save the default values of each variables.

  6. Thanks deChad (1 members gave Thanks to akeon1 for this useful post)
  7. #5
    deChad's Avatar Member
    Reputation
    1
    Join Date
    Aug 2010
    Posts
    13
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey akeon, I write my first own shaman resto profile. The spells are written in german.

    The problem is the fetch function in my rotation or the gui config?

    Rotation:
    Code:
    { "Kettenheilung", { "modifier.lshift", "modifier.lcontrol", "!player.buff(Gunst des Geistwandlers)", "!player.buff(Aszendenz)", "lowest.range <= 40" }, "lowest" },
    { "Heilende Woge", { "modifier.lcontrol", "!player.moving", "lowest.range <= 40", function() return dynamicEval("lowest.health <= " .. fetch('restoConfig', 'woge_spin')) end }, "lowest" },
    { "Heilende Woge", { "modifier.lcontrol", "player.moving", "lowest.range <= 40", "player.buff(Gunst des Geistwandlers)", function() return dynamicEval("lowest.health <= " .. fetch('restoConfig', 'woge_spin')) end }, "lowest" },
    { "Leben entfesseln", { "modifier.lcontrol", "!lastcast(Leben entfesseln)", "lowest.range <= 40", function() return dynamicEval("lowest.health <= " .. fetch('restoConfig', 'leben_spin')) end }, "lowest" },
    { "Springflut", { "modifier.lcontrol", "lowest.range <= 40", function() return dynamicEval("lowest.health <= " .. fetch('restoConfig', 'flut_spin')) end }, "lowest" },
    { "Welle der Heilung", { "modifier.lcontrol", "lowest.range <= 40", function() return dynamicEval("lowest.health <= " .. fetch('restoConfig', 'welle_spin')) end }, "lowest" },
    GUI:
    Code:
    config = {
    
    		{ type = "spacer" },
    		{ type = "header", text = "|cff0000FF Spieler |r", size = 25, align = "left", offset = 0 },
    		{ type = "checkspin", text = "Schmuck #1", key = "trinket1", default_spin = 50,	default_check = true, },
    		{ type = "spinner", text = "Gabe der Naaru", key = "naaruPlayer", default_spin = 40, default_check = true },
    		{ type = "spinner", text = "Gesundheitsstein", key = "stein", default_spin = 40, default_check = true },
    		
    		{ type = "rule" },
    		{ type = "header", text = "|cff0000FF Freund |r", size = 25, align = "left", offset = 0 },
    		{ type = "checkspin", text = "Gabe der Naaru", key = "naaruLowest", default_spin = 40,	default_check = true, },
    
    		{ type = "rule" },
    		{ type = "header", text = "|cff0000FF Gruppe |r", size = 25, align = "left", offset = 0 },
    		{ type = "spinner", text = "Springflut", key = "flut", default_spin = 95 },
    		{ type = "spinner", text = "Welle der Heilung", key = "welle", default_spin = 85 },
    		{ type = "spinner", text = "Heilende Woge", key = "woge",	default_spin = 75 },
    		{ type = "spinner", text = "Leben entfesseln", key = "leben", default_spin = 65 },
    		{ type = "rule" },
    
    	}
    Sorry, I have difficulties with english language. But I learn…

    Best regards
    dechad

  8. #6
    akeon1's Avatar Contributor
    Reputation
    103
    Join Date
    Sep 2011
    Posts
    265
    Thanks G/R
    3/7
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    This will be fun. I am off to deutschland later in the year.

    So it looks to me like the GUI option is there but is not getting saved.

    What happens when you open the GUI, an move the spinner. Does the rotation work?

    I am driving at the moment but will look a bit closer tonight.
    To help with language barrier could you send me the whole addon. Skype is akeon.






    Sent from my GT-I9305 using Tapatalk

  9. #7
    deChad's Avatar Member
    Reputation
    1
    Join Date
    Aug 2010
    Posts
    13
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey akeon,
    What happens when you open the GUI, an move the spinner. Does the rotation work?
    Did not help! Same error
    Skype is akeon.
    From moscow?

  10. #8
    akeon1's Avatar Contributor
    Reputation
    103
    Join Date
    Sep 2011
    Posts
    265
    Thanks G/R
    3/7
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by deChad View Post
    Hey akeon,

    Did not help! Same error

    From moscow?
    sorry, name is akeon1.
    and no from australia.
    Last edited by akeon1; 02-01-2016 at 06:09 AM.

  11. #9
    deChad's Avatar Member
    Reputation
    1
    Join Date
    Aug 2010
    Posts
    13
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Invite sent!

    Btw, I use now English client and will learn english... I need this language!!!

    Best regards
    dechad

Similar Threads

  1. [Help] Lua Error (eof)
    By Moffeman in forum World of Warcraft Emulator Servers
    Replies: 3
    Last Post: 06-19-2008, 01:48 PM
  2. LUA error
    By mager1794 in forum World of Warcraft Emulator Servers
    Replies: 4
    Last Post: 05-23-2008, 07:17 PM
  3. LUA Error.
    By controlsx2 in forum World of Warcraft Emulator Servers
    Replies: 2
    Last Post: 05-07-2008, 04:31 PM
  4. [Lua] Error
    By ~ViVo~ in forum World of Warcraft Emulator Servers
    Replies: 3
    Last Post: 03-15-2008, 11:15 AM
  5. [Errorz] A Lua Error I Havent seen before
    By Snailz in forum World of Warcraft Emulator Servers
    Replies: 2
    Last Post: 02-14-2008, 10:12 AM
All times are GMT -5. The time now is 04:48 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search