Jump to content

Orion

Members
  • Posts

    9
  • Joined

  • Last visited

Profile Information

  • Gender
    Male
  • Location
    La Union
  • Discord: Orion#4806

Recent Profile Visitors

725 profile views

Orion's Achievements

Poring

Poring (1/15)

1

Reputation

  1. desert,41,51,5 script 50/50 Game 504,{ set .WinningRate,30; mes "[ Gambit ]"; mes "Do you want to gamble ?"; if( select("Yes:No") == 2 ) close; next; set .itemID,40001; // Set ID Gold Coin mes "[ Gambit ]"; mes "This is a betting game with a 30% win rate"; mes "Just bet the amount you want and push your luck !"; next; mes "[ Gambit ]"; mes "Do you want to gamble your "+getitemname( .itemID )+" with a "+.WinningRate+" % Win rate?"; next; if( select("Yes:No") == 2 ) close; mes "[ Gambit ]"; mes "Enter amount of "+getitemname( .itemID )+" you want to gamble"; input .Amount; next; mes "[ Gambit ]"; mes "Are you sure you want to gamble "+.Amount+" Gold Coin ?"; next; if( select("Yes:No") == 2 ) close; if( countitem( .itemID ) < .Amount ){ mes "[ Gambit ]"; mes "You dont have enough "+getitemname( .itemID )+" to gamble."; }else{ delitem .itemID,.Amount; if( rand(100) < .WinningRate ){ mes "[ Gambit ]"; mes "Congratulations ! You won !"; getitem 607,10*.Amount; }else{ mes "[ Gambit ]"; mes "Sad ! You lost. Better luck next time !"; } } close; }
  2. src/map/buyingstore.cpp #define BUYINGSTORE_MAX_PRICE 99990000 <----- Change this PS : Dont forget to compile
  3. What do you mean by this ? Kindly explain more
  4. - script Orion -1,{ OnClock0000: if (gettime(DT_DAYOFWEEK) == MONDAY) query_sql "UPDATE `guild_points` SET `total_points`=0"; query_sql "UPDATE `gid_points` SET `ind_pts`=0"; end; }
  5. Check mmo.h #define MAX_STORAGE
  6. It's on the sprite itself. Basically the sprite shows 2 weapons even if you set it just 1 dagger. So basically if you know how to edit sprite then make sure there will be a sprite for right hand only and for left hand only so that when you equip the right hand dag it will only show 1 dag and if you equip the 2 then it'll show the 2 dagger itself.
  7. 1 is because maybe you already used the max number of storage being the normal storage so the VIP Increase Storage won't work anymore
×
×
  • Create New...