Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
 NoMethodError, help on fixing it
#2
try putting this at the beginning of the script:
Code:
#===============================================================================
# Game_System
#-------------------------------------------------------------------------------
# **modded to keep track of queued and obtained achievements.
#===============================================================================
class Game_System
attr_accessor :awards
attr_accessor :queue
alias gg_init_awards_sys_lat initialize
def initialize
@awards = []
@queue = []
gg_init_awards_sys_lat
end
def gain_award(id)
return if @awards.include?(id) || Awards::Award[id] == nil
if Awards::Track_Score
$game_variables[Awards::Variable_Id] += Awards::Award[id][3]
end
@awards.push(id)
@queue.push(id)
end
end

Might fix it
Valdred
Tech Administrator of Save-Point

Reply }


Messages In This Thread
NoMethodError, help on fixing it - by gRaViJa - 07-11-2011, 06:48 PM
RE: NoMethodError, help on fixing it - by deValdr - 07-11-2011, 07:04 PM
RE: NoMethodError, help on fixing it - by gRaViJa - 07-11-2011, 07:10 PM



Users browsing this thread: