Just because we have 'all' the packets, doesn't mean someone has actually completed the rev 100%. You could say that for other revs too.
;-;
Printable View
Just because we have 'all' the packets, doesn't mean someone has actually completed the rev 100%. You could say that for other revs too.
;-;
I'm grabbing them from Woodpecker & Chop v2 atm, :P.
I should just make two static classes for events and composers really :(.
--
Worked a bit on the CMS, it now disallows account editing/viewing if your email has not been activated.
Will probably tidy it up, and then implement other forms of authentication (Google, Facebook(?), OpenID, etc).
Thanks to a friend, I've fixed it:
http://grab.by/fiL0
Before, a single user was serializing, now multiple can. (Yes, I know the messenger is in Spanish o.o)
Does anyone have a habbo imager for the old shockwave figures?
Tempted to switch to a different client, not sure yet.
Again, Lido, and I'll buy in bbz.
Good luck with the project.
I'll check it out -^
Anyway, I need to recode some stuff in the cms (fetching a users' characters & the like).
Adil, post snippetz of cms pl0x?
No.
Why do you keep asking?
I'll do it in my own time.
Ask you asked.. :)
Most of that needs a cleanup.Code:
class User < ActiveRecord::Base
set_table_name "users"
set_primary_key "user_id"
# Include default devise modules. Others available are:
# :token_authenticatable, :confirmable,
# :lockable, :timeoutable and :omniauthable
devise :database_authenticatable, :registerable,
:recoverable, :validatable, :trackable, :confirmable
# Setup accessible (or protected) attributes for your model
attr_accessible :email, :password, :password_confirmation, :remember_me, :username
# attr_accessible :title, :body
before_create :user_date
def self.show_characters(email)
return self.connection.execute("SELECT * FROM `habbo` WHERE `email` = '#{email}'").each
end
private
def user_date()
self.last_sign_in_at = Date.today
end
end
Pretty nice although i do still cry on Bootstrap don't like Bootstrap much.