Bubka3 Posted January 6, 2012 Share Posted January 6, 2012 Hello, What would be the most logical way to setup different public / private pricing per slot? Separate products? Link to comment Share on other sites More sharing options...
LFA Posted January 6, 2012 Share Posted January 6, 2012 To have it in a single product you can create a configurable option type dropdown with these values: PUB8|8 slots,PUB12|12 slots,PUB16|16 slots,PRI8|8 private slots,PRI12|12 private slots,PRI16|16 private slots PUB8 creates a public 8 slot service PRI8 creates a private 8 slot service Link to comment Share on other sites More sharing options...
slowride326 Posted February 20, 2012 Share Posted February 20, 2012 Do you have to have it excalty like that or? PUB8| Package One? Link to comment Share on other sites More sharing options...
LFA Posted February 20, 2012 Share Posted February 20, 2012 You can add anything you want after | Link to comment Share on other sites More sharing options...
Bubka3 Posted February 20, 2012 Author Share Posted February 20, 2012 How about setting high priority? Link to comment Share on other sites More sharing options...
LFA Posted February 21, 2012 Share Posted February 21, 2012 For that you have to set the value of game_priority. This is only available in v2 Link to comment Share on other sites More sharing options...
icekohl Posted February 21, 2012 Share Posted February 21, 2012 For that you have to set the value of game_priority. This is only available in v2 This would have to be added to default_values and tca2_advanced I assume? Would it look as follows and pass correctly with $ddoptions of normal/high or would it be an integer? $billing_api_values["game_priority"] = $params["configoption#"]; "Game Priority" => array( "Type" => "dropdown", "Options" => $ddoptions, "Description" => tcadmin2_advanced_GetDescription("blahblahblahtrolololol.") ), Or am I completely wrong? Link to comment Share on other sites More sharing options...
LFA Posted February 21, 2012 Share Posted February 21, 2012 $billing_api_values["game_priority"] = $params["configoptions"]["[b]Priority[/b]"]; In that example Priority is a configurable option named Priority. Possible values are Idle, BelowNormal, Normal, AboveNormal, High, RealTime You can also have it hardcoded: $billing_api_values["game_priority"] = "AboveNormal"; Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.