Facebook
From Innocent Duck, 3 Years ago, written in JavaScript.
Embed
Download Paste or View Raw
Hits: 142
  1. function lib()
  2. {
  3.     this.CreateCurrentUser = function()
  4.     {
  5.         var currentUser = {
  6.             id:null,
  7.             nick:null,
  8.             currentDinosaur: null,
  9.             maxHealth:null,
  10.             health:null,
  11.             HP_regen:null,
  12.             speed:null,
  13.             stamina:null,
  14.             maxStamina:null,
  15.             max_hunguer:null,
  16.             max_thirst:null,
  17.             hunguer:null,
  18.             thirst:null,
  19.             looktype:null,
  20.             current_Position:"10,2,10",
  21.             level:1,
  22.             damage:10,
  23.             scale:"0.1,0.1,0.1"
  24.            
  25.    
  26.         }
  27.         return currentUser;
  28.     }
  29. }